如何在matlab中将单个图像与多个图像进行比较?

时间:2011-09-22 12:45:38

标签: matlab image-processing

我想在matlab中将单个图像(可能是jpeg格式)与多个图像进行比较,当图像与多个图像中的一个匹配时,我想输出该图像文件名。

1 个答案:

答案 0 :(得分:2)

% the basic image that you are trying to find
the_image = imread('compare_image.jpg');
% list of images you are trying to compare to    
% go through each image

end