Height of circular shape
古いコメントを表示


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?
採用された回答
その他の回答 (1 件)
Image Analyst
2022 年 9 月 30 日
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.
カテゴリ
ヘルプ センター および File Exchange で Region and Image Properties についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
