write a MATLAB code to locate all yellow circles in the provided image
35 次查看(过去 30 天)
显示 更早的评论
Automatically detect circular objects in an image and visualize the detected circles.
Steps are here, just detect all the yellow circles in the image
0 个评论
回答(1 个)
Sam Chak
2024-7-12
The code is available in the example to locate the bright yellow circular objects. You need to adjust the Sensitivity level though.
rgb = imread("coloredChips.png");
imshow(rgb)
[centersBright, radiiBright] = imfindcircles(rgb, [20 25], ObjectPolarity="bright", Sensitivity=0.95);
hBright = viscircles(centersBright, radiiBright, Color="b");
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!