필터 지우기
필터 지우기

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