I want to find use regioprops and find the centroid of this shape along with other properties such as area of this shape. any ideas?
2 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Walter Roberson
2022-8-11
filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/1094395/image.jpeg';
img = imread(filename);
bw = im2bw(img);
imshow(bw)
props = regionprops(bw, 'Area', 'Centroid');
props
2 个评论
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!