Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How to calculate alignments of fingerprint minutiae in MATLAB

1 visualización (últimos 30 días)
Mo At
Mo At el 13 de Dic. de 2019
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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

Respuestas (1)

Image Analyst
Image Analyst el 13 de Dic. de 2019
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(:)]);

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by