Having imfindcircles not to detect arc in an image

8 次查看(过去 30 天)
Hi all,
I have been trying to find only circles in my images, but often imfindcircles would detect arc and aggregation of circle like the image below. Please let me know if there is away to work around it.
  1 个评论
Sahil Jain
Sahil Jain 2021-10-20
Since all the aggregated circles detected have a rather large radius, you can try reducing the maximum limit of the "radiusRange" parameter of the "imfindcircles" function.

请先登录,再进行评论。

回答(1 个)

Jayanti
Jayanti 2025-5-13
Hi,
Please refer to the below code which can detect circles for the provided image:
I=imread('your_file');
[centers, radii] = imfindcircles(I,[1 60],'ObjectPolarity','bright');
imshow(I)
viscircles(centers, radii,'EdgeColor','b');
I have set the radius range to [1, 60] to capture smaller-sized circles that are present in the image. Set the object polarity to “bright” as the circular object is brighter compared to the background of the image. With these settings, “imfindcircles” is able to detect the circles effectively.

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by