Height of circular shape
1 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
采纳的回答
Kevin Holly
2022-9-30
You could use regionprops to find the major axis length. Or did you need the length of the object in the y-direction? What do you mean by height?
Img = imread('segemented cup 1.jpg');
imshow(Img)
size(Img)
rp = regionprops(imbinarize(Img),"MajorAxisLength")
更多回答(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.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!