how i compare one image from many images in one folder, please help me to send the code.
7 ビュー (過去 30 日間)
古いコメントを表示
how i compare one image from many images in one folder, please help me to send the code. thanks
0 件のコメント
回答 (3 件)
Image Analyst
2014 年 6 月 15 日
How exact do the comparisons need to be? How about subtracting them? Or use psnr or ssim? Or use SURF or CBIR methods?
1 件のコメント
Image Analyst
2014 年 6 月 15 日
First check the sizes of all dimensions
[rows, columns, numberOfColorChannels] = size(yourImage);
if all those match up, then subtract them and look for differences
subtraction = double(image1) - double(image2);
if nnz(subtraction(:)) >= 1
% Then they don't match
else
% They do match
end
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!