Utkarsh-Deshmukh / Fingerprint-Feature-Extraction

Extract minutiae features from fingerprint images
MIT License
144 stars 44 forks source link

minutiae points extraction #15

Closed nguThapelo closed 1 year ago

nguThapelo commented 1 year ago

I want to display the minutiae coordinates in a tubular form, the x, y, orientation and type. I am not sure how to extract the coordinates from the fingerprint_feature_extractor function

Utkarsh-Deshmukh commented 1 year ago

when you extract the minutiae feature using the command: FeaturesTerminations, FeaturesBifurcations = fingerprint_feature_extractor.extract_minutiae_features(img, spuriousMinutiaeThresh=10, invertImage=False, showResult=True, saveResult=True)

you will get the minutiae in the variables FeaturesTerminations and FeaturesBifurcations as a list. you will then be able to tabularize the values from there.