Height of circular shape
Afficher commentaires plus anciens


I have these two images and I want a code that can be used to determine the height of these nearly circular region can anyone help?
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 30 Sep 2022
props = regionprops(mask, 'BoundingBox');
bb = vertcat(props.BoundingBox); % In case there is more than one blob in the image.
heights = bb(:, 4); % Height along the y direction.
1 commentaire
Walaa
le 30 Sep 2022
Catégories
En savoir plus sur Region and Image Properties dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
