how to display the minutia points on the fingerprint thinned image knowing the X and Y co-ordinates and the angle if each minutia?

6 ビュー (過去 30 日間)
Actually i have extracted the minutia points and it is stored in text file. i want to see them on the thinned image with different colors. Can anyone help me out?

採用された回答

Image Analyst
Image Analyst 2014 年 11 月 29 日
If minutiae is an N by 2 array of the minutiae coordinates, then try this:
imshow(yourImage)
hold on;
for k = 1 : size(minutiae)
x = minutiae(k, 1); % Extract x coordinate
y = minutiae(k, 2); % Extract y coordinate
plot(x, y, 'b*', 'MarkerSize', 10);
end
  9 件のコメント
zohre saeedi
zohre saeedi 2016 年 9 月 5 日
hello viny kumar . I am working on fingerprint. I want to calculate orientation of minutiae but I can't. can you send me your code? my email is zohresaeedi71@yahoo.com

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by