Hello everyone. I would be very grateful if anyone can help to see if there is any problem with the centroid extracted by this program.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Wesley
am 17 Dez. 2020
Beantwortet: Rishabh Mishra
am 21 Dez. 2020
BW = imread('k.png');
s = regionprops(BW,'centroid');
centroids = cat(1,s.Centroid);
imshow(BW)
hold on
plot(centroids(:,1),centroids(:,2),'b*')
0 Kommentare
Akzeptierte Antwort
Rishabh Mishra
am 21 Dez. 2020
Hi,
I have tried reproducing the issue on my end. I would state that you are following the correct method to extract the centroid of the given figure. The centroid coordinate so obtained is the mean of coordinates of all the contour points in the given image. I am attaching the image of the figure along with its centroid.
Hope this helps.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!