Mask image in Matlab
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am using Matlab for image analysis. However, after I binarized the image, I conducted a complement of a binary image, resulting in inverted black and white. I am wondering how you could mask the internal pixels in black while the background still remains unchanged (for Fig 4b and Fig 4c).
I am looking forward to hearing from you soon.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1144070/image.png)
0 Commenti
Risposte (2)
millercommamatt
il 4 Ott 2022
I think imclose will do what you want.
https://www.mathworks.com/help/images/ref/imclose.html
0 Commenti
Image Analyst
il 4 Ott 2022
You can call imfill on your binary image to fill your closed blobs. So an "O" will get filled, but a blob with a broken perimeter like a "C" will not get filled. You have to have your segmented things white first, not black;
mask = ~mask; % Turn black into white, and white into black.
mask = imfill(mask, 'holes');
0 Commenti
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!