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

1 view (last 30 days)
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?

Accepted Answer

Image Analyst
Image Analyst on 29 Nov 2014
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 Comments
zohre saeedi
zohre saeedi on 5 Sep 2016
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

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!