How can I find the distance between different dimensional matrices?
1 view (last 30 days)
Show older comments
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
Answers (1)
Walter Roberson
on 13 Aug 2018
"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.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!