user918477
user918477

Reputation:

image pattern matching in java

Earlier i was searching for fingerprint recognisation in java, but didn't find anything how to implement. So, now i have decided to just matching the pattern of two images of fingerprint after getting fingerprint manually. And then, compare their pattern. And i think, this can be done by comparing two image and matching their pixel similarity (as per my finding).

       So, now i am looking for any API/library/SDK/framework or anything available in Java, for comparing pattern of two images and getting the percentage match between them.

I'll appreciate any idea !!

Upvotes: 3

Views: 4544

Answers (2)

kmera
kmera

Reputation: 1745

Have a look at WEKA. There might be something in there for your needs, but as Stefan Kendall already mentioned it's not easy at all.

Also, http://opencv.willowgarage.com/wiki/ might be useful, but unfortunately there is no java version yet.

Upvotes: 1

Andy
Andy

Reputation: 3682

I haven't used it, or even properly studied it - but from what I have seen, this project may help you. (Currently it is for Java and .NET):

http://sourceforge.net/projects/biometricsdk/

Upvotes: 1

Related Questions