Problem in Blob extraction using bwareafilt()
1 view (last 30 days)
Show older comments
Hello Everyone, I have two separate blobs in an image, which is separated by one pixel thick boundary. I tried to extract one out of them using bwareafilt( Imagedata,1). However, it did not work out- instead it gives me the same image without any error. Imagedata variable has Logical type. Even when I run regionprops() to find the centroid of each, it shows me only one centroid and considers as the connected blobs. Please find the attached file with this question (Mask.PNG). Thanking you in anticipation.
0 Comments
Accepted Answer
Image Analyst
on 11 Apr 2018
You need to use 4-connectivity. It's using 8-connectivity and so it thinks the blobs are touching on the corners. Use 4 for the conn input to bwareafilt() and I bet it will be ok.
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!