how to draw a bounding box around an edge detected image?
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Shuvam Routray
le 28 Août 2017
Modifié(e) : Shuvam Routray
le 29 Août 2017

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 commentaires
Réponse acceptée
Image Analyst
le 28 Août 2017
Call bwconvhull()
mask = bwconvhull(mask);
props = regionprops(mask, 'BoundingBox');
1 commentaire
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
