how can i compare two images which are almost the same
1 次查看(过去 30 天)
显示 更早的评论
hello!
I have a black and white binary image,i create a copy of this image and i compare these two images using histograms. The result is that these images are exactly the same.
I put a black dot(one pixel) somewhere in the first image an then i compare again the two images and of course the result is that they are not the same anymore.
the question is what can i do to compare two images who are generally the same,but they have very very small differences. Differences that you cant see with naked eyes.
Thank you very much
0 个评论
采纳的回答
tudor dima
2014-2-5
You could try
>> i3 = xor(i1, i2);
>> imagesc(i3):
% and for some relative measure
>> d = sum(i3(:)) / numel(i3);
Of course, this returns no spatial info, but I'm not sure what exactly are you looking for.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!