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

조회 수: 1 (최근 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개)

카테고리

Help CenterFile Exchange에서 Biotech and Pharmaceutical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by