Remove larger connected components based on pixels

5 visualizaciones (últimos 30 días)
Tanmoy
Tanmoy el 12 de Jun. de 2015
Respondida: Image Analyst el 15 de Jun. de 2015
bwareaopen(bw,p) can delete pixels of connected components below p pixels. I want to delete the connected components above p pixel.
Say, if a connected component has 19 pixel, & we set p =20, bwareaopen() can delete that component. But, I need to delete connected component that has ,say 51 pixels in it. A function to remove larger connected components (above the threshold "p").

Respuesta aceptada

Image Analyst
Image Analyst el 15 de Jun. de 2015
You can use the bwareafilt() function.

Más respuestas (1)

Eric Lin
Eric Lin el 15 de Jun. de 2015
This answer provides a nice solution to your question.
Basically, to delete components greater than a threshold, use a logical complement and AND operation to mask out the larger components.

Categorías

Más información sobre Get Started with Image Processing Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by