Clear Filters
Clear Filters

write a MATLAB code to locate all yellow circles in the provided image

20 views (last 30 days)
Automatically detect circular objects in an image and visualize the detected circles.
Steps are here, just detect all the yellow circles in the image

Answers (1)

Sam Chak
Sam Chak on 12 Jul 2024 at 8:20
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");

Community Treasure Hunt

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

Start Hunting!