Restrict regionprops to only fit ellipses within binary objects?
이전 댓글 표시
I am using regionprops to extract image properties of a binary image. I have a lot of uniquely shaped regions, which is why regionprops is struggling to fit ellipses to the white regions. How do I restrict regionprops to only fit ellipses within the white regions (1s) and not include any of the blue region (0s)? I have attached a picture of the results I get from regionprops for my binary image.
댓글 수: 8
This question, "How do I restrict regionprops to only fit ellipses within the white regions (1s) and not include any of the blue region (0s)" makes no sense. regionprops only uses the (foreground) white pixels when fitting ellipses, specifically, it uses the position of the pixels. What other fit would you expect in your example image?
In any case, regionprops does what it does, if you're not happy with that, you'll have to implement your own fit.
Andrew Poissant
2018년 7월 23일
Guillaume
2018년 7월 23일
So, you want the largest inscribed ellipse within a likely non-convex polygon? As far as I know, even for a circle inscribed in a convex polygon, it's not trivial so what you're asking is probably very difficult. On the other hand, it's really not my area of expertise.
Florian Morsch
2018년 7월 24일
Whats your plan once you fittet the ellipses in a better way? If you want to extract the objects you could use the convex hull and set the area to the pixel edges. With that you might get less background into your shape, but background within a object would still be there.
Andrew Poissant
2018년 7월 24일
Florian Morsch
2018년 7월 25일
Well, regionprops gives you the centroids and the size of objects, so why not simply use the features from regionprops to get those? You dont need the ellipses for that
Andrew Poissant
2018년 7월 25일
Guillaume
2018년 7월 25일
The 'Area' property returned by regionprop never includes background pixels. It is just the count of foreground pixels. Similarly, the 'Centroid' is the exact centroid of the foreground pixels according to the mathematical definition of the centroid. For a non-convex shape, the centroid may fall outside the shape.
The documentation of regionprops explains clearly how each property is calculated and if in doubt you can always look at the implementation since it's just a standard m file.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Region and Image Properties에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!