Reputation: 4057
Suggestions on the best (preferably easiest way) to compare two images in android. The first image is in my SD Card. The second image was taken using Camera in android.
How to measure percentage similarity between those 2 images??
Thanks a lot.
Upvotes: 1
Views: 2919
Reputation: 6104
Android does not provide any picture comparison algorithms for you.
Therefore, you will need to write one yourself - one that fits your needs, since not all image comparison algorithms/techniques are the same, and some work better in some cases than others.
You might want to start by looking at the SIFT technique, and find an image matching algorithm that suits your requirements.
Upvotes: 1