Problem on detect ellipse in the image with many shapes inside
3 次查看(过去 30 天)
显示 更早的评论
Excuse me again. I have adapted the code from Shape Recognition because I also want to detect the ellipse shape
But the result is not satisfied since the program can detect ellipse but it also detected other shape as ellipse and stop detecting rectangle and square. I write new condition based on bounding box and extent. So I want to know why the program detect other shape as ellipse and how to fix that. Is there any condition of ellipse that I missed?
Thank you in advanced
imshow(RGB),
title('Results');
hold on
for i = 1 : length(STATS)
W(i) = uint8(abs(STATS(i).BoundingBox(3)-STATS(i).BoundingBox(4)) < 0.1); %%If width and height of bounding box are equal, W(i)=1, otherwise W(i)=0
W(i) = W(i) + 2 * uint8((STATS(i).Extent - 1) == 0 ); % Extent =1 case; If circle/ellipse, back term=0, rec/sqr back term =2
W(i) = W(i) + 4 * uint8((STATS(i).Extent - 1) <= 0.7854); %Extent = pi/4 case ellipse/circle
centroid = STATS(i).Centroid;
switch W(i)
case 5
plot(centroid(1),centroid(2),'wO');
case 2
plot(centroid(1),centroid(2),'wX');
case 3
plot(centroid(1),centroid(2),'wS');
case 4
plot(centroid(1),centroid(2),'w+');
end
end
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Segmentation and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!