how to draw a bounding box around an edge detected image?
13 ビュー (過去 30 日間)
古いコメントを表示

I have performed edge detection on an image but I have unsuccessful in drawing a single bounding box around the resulting edge detected image using regionprops & BoundingBox() of MATLAB. Also I have tried creating box around blobs having a minimum area (say 50) but that also doesn't work. Help appreciated and thanks in advance
0 件のコメント
採用された回答
Image Analyst
2017 年 8 月 28 日
Call bwconvhull()
mask = bwconvhull(mask);
props = regionprops(mask, 'BoundingBox');
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
