Height of circular shape
Mostra commenti meno recenti


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?
Risposta accettata
Più risposte (1)
Image Analyst
il 30 Set 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 Commento
Walaa
il 30 Set 2022
Categorie
Scopri di più su Region and Image Properties in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
