thresholding to find and exclude homogeneous areas in glandular images - image processing

2 visualizaciones (últimos 30 días)
Hello there!
I am working on a problem trying to identify glands in an image and create a skeletonization of them. I am using the Matlab webinar advice and that has been working great for images where the glands are already identified (thanks Brett!). But there are some images (of course its cancer images), where there are some areas of glands and some areas that are bright (unfortunately, like glands) but are more homogeneous - I don't want those areas included!
I have been using graythresh, then im2bw to get the binary mask - but often times those bright homogeneous areas are included in the binary mask. Any other advice to exclude those areas? I feel like maybe the answer is simpler than i think.
Thanks! Nad

Respuesta aceptada

Image Analyst
Image Analyst el 5 de Dic. de 2012
I haven't the slightest idea what you're looking for and I couldn't even hand draw it if I had to. To me the image in Example 2 looks like a total mess with nothing recognizable in it, so I wouldn't be able to find anything in it, by eye, hand, or computer.
  6 comentarios
Image Analyst
Image Analyst el 6 de Dic. de 2012
Yes that is correct. You can identify low areas by thresholding:
mask = textureImage < someValue;
Then either process the whole image and multiply it by the mask to zero out low texture areas of your output image, or use mask to just extract a linear list of pixel values. It just depends on how you want to use this information.
Nad
Nad el 7 de Dic. de 2012
I did an AND operation with my old image and the result of the texture filter. That seems to be working great in excluding those homogeneous areas.
Thanks for your help.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by