Which is the efficient way to compare two images (Bitmaps), to check if they are the same or not?
I've tried to document me and I've read that I need to re-size both images to around 16x16px, but I don't get the expected result.
I've tried to compare the resized images using .Equals:
If img1.Equals(img2) then
msgbox("are equals!")
End if
I've seen AForge image library but I can't found any method inside to compare Images.
Is there way to do an efficient Image comparison using .NET classes or 3rd party libs without hardcode a pixel-per-pixel image comparer? If not, any example of a function to compare images?