Borrar filtros
Borrar filtros

Hi Question is about eleminating unwanted regions in binary image.

1 visualización (últimos 30 días)
Pradeep Gowda
Pradeep Gowda el 10 de En. de 2016
Comentada: Image Analyst el 13 de En. de 2016
I work on fundus image , bwareaopen() function removes all connected components fewer than P pixels. But in my image I need to remove all the regions which have more than 11 pixels how can I do so? And how can I calculate the metrics of each region and eliminate the structures having metrics less than 0.95?

Respuestas (1)

Image Analyst
Image Analyst el 10 de En. de 2016
So P=11, right? Did you try this:
binaryImage = bwareaopen(binaryImage, 11);
Regarding "metrics", I think you need to do a spatial calibration, and I attach my demo for that. So then use regionprops() and multiply linear measurements by the spatial calibration factor and area measurements by the spatial calibration factor squared.
  5 comentarios
Meghana Dinesh
Meghana Dinesh el 13 de En. de 2016
You can do what Image Analyst mentioned:
binaryImage_out = bwareaopen(binaryImage_in, 11);
Later, subtract binaryImage_in and binaryImage_out.
Image Analyst
Image Analyst el 13 de En. de 2016
binaryImage = binaryImage - bwareaopen(binaryImage, 11);

Iniciar sesión para comentar.

Categorías

Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by