Is there possible to compare two images with different resolutions?
I mean here some algorithmic/programming approach. For instance, now I calculate hash co
For synthetic images with a few distinct colours I would start with histogram matching.
Basically add up the number of pixels of each colour in each image and divide by the total number of pixels. Then you have a simple float vector as a fingerprint. You can ignore white if you want images with more or less border to count as a match
It's not going to detect the same image with the slices re-arranged, or the text moved down a line but i don't think that is the concern in this case
Two very simple perceptual hashing methods you might give a try before venturing into more complicated territory are based on the Discrete Cosine Transform and the local vs glocal mean of an image:
Convert image to grayscale
1.1 (EDIT) Make your image zero mean
And a variant on this theme would be
Also, have a look at phash.