Image Processing ( calculate perimeter)
14 次查看(过去 30 天)
显示 更早的评论
How do I now calculate the perimter of this hand . I've got the left image using bmarea and the one on the right is when imclose is used
How do I now find the perimeter as shown on the left? I've got the outline what should i do now ?
thank u
0 个评论
回答(2 个)
Teja Muppirala
2011-4-10
Use the REGIONPROPS function.
I = peaks(500) > 3;
imshow(I);
P = regionprops(I,'perimeter');
P.Perimeter
7 个评论
Sean de Wolski
2011-4-13
cprops(:).Perimeter
Will list off the six perimeters (one for each of the six binary objects)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!