필터 지우기
필터 지우기

How can I find the distance between different dimensional matrices?

조회 수: 1 (최근 30일)
wisam kh
wisam kh 2018년 8월 13일
댓글: wisam kh 2018년 8월 14일
Hello
When I extract minutiae of fingerprints, their number is different between one image and another. after preprocessing make thin to ridges
im = bwmorph(im,'thin',Inf);
% now clean up the thin image
im = bwmorph(im,'clean'); % Removes single isolated pixels
im = bwmorph(im,'hbreak'); % Removes H-Breaks
newim = bwmorph(im,'spur'); % Removes spikes
Minutiae is extracted by morphological processes Minutiae is the end points and branches However, due to the difference in the quality of the images and other reasons like different fingerprint size Although the size of the image is fixed, or part of the fingerprint is broken. The features obtained will vary between one image and another, these features are points (x, y and orientation(o)), every fingerprint is represented by a matrix of these features,
How can I find the distance between different dimensional matrices?
thank you
  댓글 수: 6
Walter Roberson
Walter Roberson 2018년 8월 13일
What are the factors that lead to different dimensions? Are you not automatically cropping and resizing what is left to a constant size?
wisam kh
wisam kh 2018년 8월 13일
Well I will add the details

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2018년 8월 13일
"How can I find the distance between different dimensional matrices?"
You cannot do that; it has no mathematical meaning.
You will need to find a different approach.
  댓글 수: 3
Walter Roberson
Walter Roberson 2018년 8월 13일
Fingerprint analysis is not something I have studied.
I would tend to think that one approach would be to use image registration to align the images, and then to extract minutae from both, find locations in common, and compare. I do not know if this approach is practical.
I would suggest that you examine scientific papers on fingerprint analysis, such as at http://scholar.google.com
wisam kh
wisam kh 2018년 8월 14일
Thank you I appreciate your effort

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by