Avinandan Nandi
Avinandan Nandi

Reputation: 11

How to extract features from ROIs of palmprint?

I am working on palmprint authentication, i have captured the palm images and have done the preprocessing and the ROI extraction. Now i have to extract features from the ROI such as 'principle lines' and then later use this for matching.
So how do i extract these features and find accuracy of matching using these features? Any suggestion or the code regarding this shall be appreciated.

Captured palm image

ROI of palm

Upvotes: 1

Views: 493

Answers (1)

vinod lahire
vinod lahire

Reputation: 36

You have to enhance principal edges ; you can use firangi filter which is very good at this job here is link to get code

http://www.mathworks.com/matlabcentral/fileexchange/24409-hessian-based-frangi-vesselness-filter/content/FrangiFilter2D.m

I have tried it on you image here is results enter image description here

you can change options to get more refined results .I would like to mention that this is just extraction /enhancement of edges not features .I presume that this is your requirement.If you want feature extraction from your palm image i would suggest use

'local binary pattern'

https://en.wikipedia.org/wiki/Local_binary_patterns

Upvotes: 0

Related Questions