Segment Dumbbell Structure into Two Circles and One Rectangle

2 ビュー (過去 30 日間)
Paul Safier
Paul Safier 2019 年 12 月 9 日
コメント済み: Paul Safier 2019 年 12 月 9 日
I'm trying to analyze three shapes from this image--two circles and one rectangle. I would like each to be a separate object detected by bwconncomp so that I can analyze with various region props. All three are touching. Using bwconncomp unfortunately gives a single object. I tried various bwmorph operations but they are altering the objects too much. For example, I used the thin operation with n=20, followed by the open operation and then finally the thicken operation with n=20. My strategy was to isolate the circles first, then subtract from the original image to get the rectangle isolated. Unfortunately the bwmorph operations make the circles into more of a square shape afterwards. I have also tried using the watershed function to the image after it was transformed via bwdist--this also did not work, i.e. there were way too many watershed lines when I would only want two.
There is no contrast between the circles and the rectangle.
Any suggestions would be most welcome!Dumbell.JPG

採用された回答

Image Analyst
Image Analyst 2019 年 12 月 9 日
Try imfindcircles() to find the centers and radii of the circles.
Then create a circular mask to mask them out -- see The FAQ for code to create a circle, then use poly2mask() to make a mask.
  1 件のコメント
Paul Safier
Paul Safier 2019 年 12 月 9 日
Thanks for the suggestion--I have been able to make it work!

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by