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!
