Effacer les filtres
Effacer les filtres

how calculate orientation of minutia(end point,bifurcation) relative to x axis in fingerprint image

3 vues (au cours des 30 derniers jours)
hello . I have fingerprint gray scale image . I extract coordinate of minutiae . but I don't know how to calculate the orientation of end point and bifurcation. can anybody help me to write matlab code of it? in my image end point is marked with red. bifurcation marked with blue
  2 commentaires
GOPEE Ajit Kumar
GOPEE Ajit Kumar le 2 Fév 2017
Hello I would like to know how you have generated such an image (I mean with thinning). I am using FVC 2002 fingerprint images with gray scale on which I wish to carry out thinning. Also do you know how to locate singular points in fingerprint images? Thanks in advance.
indrani dalui
indrani dalui le 28 Avr 2020
please help me to givein a code ..after orientation bifurcation of thinning image how to calculate the scor for matching thinned image.thanks in advance

Connectez-vous pour commenter.

Réponses (1)

Image Analyst
Image Analyst le 3 Sep 2016
Get the endpoints, which it looks like you can already do. Then get the x,y coordinates of the points connected to that. A variety of ways to do that such as bwdistgeodesic http://blogs.mathworks.com/steve/2011/11/01/exploring-shortest-paths-part-1/
Then take the points closest to the endpoint, say 5 or 10 or whatever you want, and use polyfit to fit a line to the. I've attached a polyfit demo.
  4 commentaires
indrani dalui
indrani dalui le 1 Juil 2017
respected sir , i am a student doing a project of fingerprint recognition i have extract ridge end and bifurcation from fingerprints image..now i want code for "ridge end and bifurcation point count from extraction ..please help me.
Image Analyst
Image Analyst le 1 Juil 2017
To count the ridges, use bwlabel(). To find endpoints, call bwmorph() then call bwlabel()
[~, numRidges] = bwlabel(binaryRidgeImage);
endPoints = bwmorph(binaryRidgeImage, 'endpoints');
[~, numEndPoints] = bwlabel(endPoints);

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by