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

3 次查看(过去 30 天)
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 个评论
GOPEE Ajit Kumar
GOPEE Ajit Kumar 2017-2-2
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 2020-4-28
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

请先登录,再进行评论。

回答(1 个)

Image Analyst
Image Analyst 2016-9-3
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 个评论
indrani dalui
indrani dalui 2017-7-1
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 2017-7-1
To count the ridges, use bwlabel(). To find endpoints, call bwmorph() then call bwlabel()
[~, numRidges] = bwlabel(binaryRidgeImage);
endPoints = bwmorph(binaryRidgeImage, 'endpoints');
[~, numEndPoints] = bwlabel(endPoints);

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by