How to find euclidean distance
Ältere Kommentare anzeigen
Plz help me to find euclidean distance between two pixels within same image without using direct matlab command
2 Kommentare
Walter Roberson
am 20 Jan. 2014
What is a "direct MATLAB command"? Even
3 + 5
is considered a command and invokes a MATLAB function ("plus")
Fahim Ahmed
am 23 Feb. 2020
i guess he meant a matlab in-built command
Akzeptierte Antwort
Weitere Antworten (1)
Geetika
am 21 Jan. 2014
2 Stimmen
if you have two vectors with any number of point, for instance, x1=[1 2 3 4 5] and x2=[2 3 4 5 6], then Euc_dist = norm( x1 - x2 ) ;
Kategorien
Mehr zu Region and Image Properties 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!