Problem in Blob extraction using bwareafilt()
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Image Analyst
le 11 Avr 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.
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!