Separate a blob into multiple regions

1 Ansicht (letzte 30 Tage)
Hg
Hg am 1 Aug. 2015
Kommentiert: Hg am 1 Aug. 2015
Is it possible to separate a blob into multiple regions and find out the centroid and major axis of each region?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 1 Aug. 2015
Yes, but you have to have a way of determining where the boundary between regions is.
Then you could draw a pair of line segments dividing it up it separate regions and regionprops() the result.
Or you could switch out of logical() class, leave one of the sections as 1's as it is now, fill another of the sections with 2's, and the third with 3's. The result would be a labeled image that regionprops() could handle.
Or you could create three derived images, each masking out the unwanted parts, and call regionprops() on each.
One way that might work (but I haven't experimented with it myself) would be to skeletonize that image and then identify the location of the two turns. If the images are as regular as they look, the centroids will be the half-way points in each line segment, and you could determine the orientations with some minor trig to determine slopes then arctan()
  1 Kommentar
Hg
Hg am 1 Aug. 2015
Thanks for the answer. Other than the suggested methods above, I think I can use kmeans() to cluster and separate the region.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by