write a MATLAB code to locate all yellow circles in the provided image
8 ビュー (過去 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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Computer Vision with Simulink についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!