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

조회 수: 7 (최근 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 CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by