Find the euclidean distance
Ältere Kommentare anzeigen
I want to find the euclidean distance of 1 specific feature in one image.Then the corresponding feature in the second image. How to find the euclidean distance of these two points? Any suggestions.
Akzeptierte Antwort
Weitere Antworten (1)
Deepesh B
am 2 Dez. 2014
use
dist_out = pdist(feature_array,'euclidean');
if u want to use b/w 2 images use this
dist_out = pdist2(i1, i2,'euclidean')
Kategorien
Mehr zu Nearest Neighbors finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!