Separate a blob into multiple regions
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Is it possible to separate a blob into multiple regions and find out the centroid and major axis of each region?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/147623/image.png)
0 Kommentare
Akzeptierte Antwort
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()
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Segmentation and Analysis finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!