Borrar filtros
Borrar filtros

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

3 visualizaciones (últimos 30 días)
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 comentarios
GOPEE Ajit Kumar
GOPEE Ajit Kumar el 2 de Feb. de 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 el 28 de Abr. de 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

Iniciar sesión para comentar.

Respuestas (1)

Image Analyst
Image Analyst el 3 de Sept. de 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 comentarios
indrani dalui
indrani dalui el 1 de Jul. de 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 el 1 de Jul. de 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);

Iniciar sesión para comentar.

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by