how to find the centre point of a circle?

1 次查看(过去 30 天)
A dent has been found on the outer edge of the circle. how to find the angle between the center point and the dent region?

回答(1 个)

Image Analyst
Image Analyst 2013-5-8
Like I said in your related question, find the dents
dentsImage = bwconvhull(binaryImage) - binaryImage;
Then get the centroids
measurements = regionprops(binaryImage, 'Centroid');
which I'm sure you already know how to do because you've used regionprops many, many times in the past.

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by