Filter löschen
Filter löschen

How to find the linear distance between two points say (x,y) and (m,n) on an image?

82 Ansichten (letzte 30 Tage)
Hi..How can we find the linear distance between any two points on an image?Can we do this using any inbuilt function??or can this be done in any other way??plz help..
  2 Kommentare
Fernanda Rivera
Fernanda Rivera am 28 Jun. 2017
You can use the function pdist2 such as:
value=pdist2([x m],[y n],'euclidean'); %obtaining euclidean distance
Also if it works better for you, you can develop the formula:
value=sqrt((x-m)^2 + (y-n)^2); %euclidean distance.
María Peñas Leonor
María Peñas Leonor am 6 Mär. 2019
how could I do to show the line of that distance with plot?
Thanks

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Oliver Woodford
Oliver Woodford am 15 Feb. 2012
p1 = [x; y];
p2 = [m; n];
d = norm(p1 - p2);

Kategorien

Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by