Measuring indentation in an object
1 回表示 (過去 30 日間)
古いコメントを表示
Dear Researchers,
How can I we measure how many indentation or foldings are present in the three objects presented below
Subrajeet
0 件のコメント
回答 (2 件)
Image Analyst
2013 年 1 月 9 日
Use the convex hull, bwconvhull(). Subtract the original image from the convex hull and call bwlabel
indentsBinaryImage = bwconvhull(binaryImage) - binaryImage;
[labeledImage, numberOfIndents] = bwlabel(indentsBinaryImage);
0 件のコメント
Amith Kamath
2013 年 1 月 9 日
http://blogs.mathworks.com/steve/2011/10/04/binary-image-convex-hull-algorithm-notes/ and the convex hull concept would help. I suppose you need to isolate each blob using http://www.mathworks.com/help/images/ref/bwconncomp.html and then find it's convex hull, and then the number of black blobs inside the convex hull will give you the number of folds. Hope this helps!
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!