How do I get the fork points of a skeleton of an image?

9 ビュー (過去 30 日間)
Soumyajit Pal
Soumyajit Pal 2016 年 2 月 24 日
コメント済み: Soumyajit Pal 2016 年 3 月 21 日
I want to find the fork points of a skeleton of an image. I have obtained the skeleton of the image using the bwmorph(binaryImage, 'skel', Inf) function.

採用された回答

Guillaume
Guillaume 2016 年 2 月 24 日
How about?
skelimage = bwmorph(binaryImage, 'skel', Inf);
branchimage = bwmorph(skelimage, 'branchpoints');
  6 件のコメント
Guillaume
Guillaume 2016 年 3 月 21 日
"A skeleton point having more than two adjacent points is called a fork point": bwmorph calls this a branch point.
"Every point which is not an endpoint or fork point": these are just a normal segment point. It does not have a particular name, and I don't see why you'd call them branch point. If you want to obtain these, it's just the skeleton point minus the end and branch points:
skelimage = bwmorph(binaryImage, 'skel', Inf);
branchimage = bwmorph(skelimage, 'branchpoints'); %branch (fork) points
endimage = bwmorph(skelimage, 'endpoints'); %end points
otherimage = skelimage - branchimage - endimage; %points other than branch and end
Soumyajit Pal
Soumyajit Pal 2016 年 3 月 21 日
Thank you so very much Guillaume.

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by