Reputation: 9
I am trying to make an application that compares two images and provides some sort of value if the image are identical or not.
Task Description: User will take the picture from native camera first and then will move to this application that has image comparison logic and when user points the camera to an object and I need to take every frame and check if the picture of that object is already captured by User and already in gallery it will say object tracked.
Things i have already done
Issue I am facing Currently, I am using openCV and the logic i written it provides a score of the data comparison and it is different every time. Doesn't matters if i point the camera to the object or not.
Any approaches and suggestion would be really helpful.
Upvotes: -1
Views: 59
Reputation: 150
You can try algorithms like Oriented FAST and rotated BRIEF or use modern AI to compare images by extracted features.
Upvotes: 0