Info

此问题已关闭。 请重新打开它进行编辑或回答。

How to calculate alignments of fingerprint minutiae in MATLAB

1 次查看(过去 30 天)
I am trying to calculate the alighment of two points of minutiae values using D = pdist2(X,Y,Distance)
I keep getting error
Example Values like this( x, y, Distance)
M1 (5, 22, 180) , M2 (35, 23, 11)
I followed guide here but I don't get it

回答(1 个)

Image Analyst
Image Analyst 2019-12-13
If X is a vector of all your x values and Y is a vector of all your y values, do this:
distances = pdist2([X(:), Y(:)], [X(:), Y(:)]);

产品

Community Treasure Hunt

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

Start Hunting!

Translated by