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

3 次查看(过去 30 天)
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

采纳的回答

Image Analyst
Image Analyst 2012-12-5
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 个评论
Image Analyst
Image Analyst 2012-12-6
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 2012-12-7
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.

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by