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
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
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.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!