how to plot centroids of objects? and how to find mid point between them?

조회 수: 34 (최근 30일)
Rujal
Rujal 2016년 2월 7일
답변: Image Analyst 2016년 2월 7일
hello friends,
I want to find centroids of the only connected component objects of binary image.
I have used code is :
if true
figure()
imshow(D);
[L Ne]=bwlabel(D,8);
%%Measure properties of image regions
propied=regionprops(L,'BoundingBox');
hold on
%%Plot Bounding Box
for n=1:size(propied,1)
rectangle('Position',propied(n).BoundingBox,'EdgeColor','g','LineWidth',2)
s = regionprops(D,'centroid');
centroids = cat(1,s.Centroid);
hold on
plot(centroids(:,1),centroids(:,2), 'b*')
hold off
end
end
The result is :
after that I have found mid point between two centroids.
for that I have used mid= mean(centroids); plot(mid(:,1),'r*');
The result is :
But its give the mid point of two corner points which is unwanted. how to remove the centroids from the corner points? I want to find mid point between two objects. I would be thankful if somebody helps me to solve this issue.

답변 (1개)

Image Analyst
Image Analyst 2016년 2월 7일

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by