finding distance between centroids
Show older comments
Hi
I have a group of blobs of a binary image for which I have calculated the centroids.
I would like to find the distance between each of these centroids and then extract the two centroids which lie in a 40 to 45 range. I've seperated the X and Y cdts into 2 matrices like so:
>> X=centroids(:,1); Y=centroids(:,2); >> X
X =
121.3073
142.9425
168.1000
225.5856
522.9487
>> Y
Y =
207.2626
149.0276
114.7667
297.5586
299.9551
and then I tried computing the euclidean distance using pdist2 but I dont understand what it gives me and I dont see any 40s over here
D = pdist2(X,Y,'euclidean'); >> D
D =
85.9553 27.7203 6.5406 176.2513 178.6479
64.3200 6.0851 28.1759 154.6160 157.0126
39.1626 19.0724 53.3333 129.4586 131.8551
18.3230 76.5580 110.8189 71.9730 74.3695
315.6861 373.9211 408.1821 225.3902 222.9936
Any advice pls?
Answers (1)
Andrei Bobrov
on 12 Apr 2012
try
D = dist([X,Y]')
7 Comments
mayfair
on 12 Apr 2012
Ashish Uthama
on 12 Apr 2012
mayfair, try hand computing your expected result for a couple and compare with the above.
Example: Distance betwee first two points:
>> ( (X(1)-X(2))^2 + (Y(1)-Y(2))^2)^.5
ans =
62.1240
(Isnt that what Andrei's answer gives?)
mayfair
on 14 Apr 2012
Rujal
on 5 Feb 2016
hi mayfair..
My question is same as yours please give me a matlab code to find out distance between set of centroids. Thanks in advance.
Image Analyst
on 5 Feb 2016
Edited: Image Analyst
on 5 Feb 2016
If you have the stats toolbox, you can use pdist2(). If not, just a simple for loop with vectorized distance calculation between that point and all the other points will do it.
Guillaume
on 5 Feb 2016
Even without the stats toolbox, you don't need a loop:
euclideandistance = hypot(bsxfun(@minus, X, X'), bsxfun(@minus, Y, Y'));
is all that's needed (assuming X and Y are vectors of the same size)
emami.m
on 11 Mar 2019
Good job Guillaume,
It was a smart and exact solution.
Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!