Image Processing ( calculate perimeter)
古いコメントを表示
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

回答 (2 件)
Teja Muppirala
2011 年 4 月 10 日
Use the REGIONPROPS function.
I = peaks(500) > 3;
imshow(I);
P = regionprops(I,'perimeter');
P.Perimeter
7 件のコメント
Teja Muppirala
2011 年 4 月 11 日
移動済み: DGM
2023 年 12 月 29 日
Sorry.
"peaks" has absolutely nothing to do with finding peaks in an image. "peaks" is just a test function that I (unfortunately) used to make a test image.
What I meant was, use:
regionprops( ??? ,'perimeter')
where ??? is whatever the variable name of your image is.
Sean de Wolski
2011 年 4 月 11 日
移動済み: DGM
2023 年 12 月 29 日
Why don't you think that's the perimeter? The perimeter of a square with 100 pixels if 400? Do you really think that a highly non-convex shape would make this perimeter a lot higher?
Sean de Wolski
2011 年 4 月 11 日
移動済み: DGM
2023 年 12 月 29 日
e means *10^...
in this case 13613.
Sean de Wolski
2011 年 4 月 13 日
0 投票
cprops(:).Perimeter
Will list off the six perimeters (one for each of the six binary objects)
カテゴリ
ヘルプ センター および File Exchange で White についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!