フィルターのクリア

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 Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by