I'm not sure this can be done quickly. But I have a couple dozen small bitmaps of the same dimension and I'd like to know if they contain roughly the same image. Let's say someone takes a picture of the sky and it is grey because it is overcast. I have another picture that is also of the same overcast sky. I'd like to be able to do an XOR on both bitmaps and determine if there are only a few differences, or many differences.
Now of course I could go through each bitmap pixel by pixel, but that would be incredibly slow. I'm wondering if I could load each bitmap into an binary array so I could quickly perform an XOR operations on the two? A low number of non-zero elements tells me how similar the images are.
Any idea'rs?
Widget
Now of course I could go through each bitmap pixel by pixel, but that would be incredibly slow. I'm wondering if I could load each bitmap into an binary array so I could quickly perform an XOR operations on the two? A low number of non-zero elements tells me how similar the images are.
Any idea'rs?
Widget