finding distance between centroids
이전 댓글 표시
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?
답변 (1개)
Andrei Bobrov
2012년 4월 12일
try
D = dist([X,Y]')
댓글 수: 7
mayfair
2012년 4월 12일
Ashish Uthama
2012년 4월 12일
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
2012년 4월 14일
Rujal
2016년 2월 5일
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
2016년 2월 5일
편집: Image Analyst
2016년 2월 5일
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
2016년 2월 5일
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
2019년 3월 11일
Good job Guillaume,
It was a smart and exact solution.
카테고리
도움말 센터 및 File Exchange에서 Image Arithmetic에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!