How can I find the region of Interest in Gray scal images(Medical images)?

조회 수: 2 (최근 30일)
Sheeraz
Sheeraz 2012년 7월 17일
Actually I am working on DICOM images and my aim to find the region of interest in gray sclae images then apply lossless compression on that region of interest and rest of the part will be compress by lossy technique.So I need to find out the suitable way for region of interest.

답변 (2개)

Image Analyst
Image Analyst 2012년 7월 17일
I'd use image processing / image analysis. MATLAB has an Image Processing Toolbox to help you. Then do some research on algorithms that work for your type of images, say here: http://iris.usc.edu/Vision-Notes/bibliography/contents.html. Pick one and code it up. That's about all I can say, given what you've given us to work with. Good luck!

bethel o
bethel o 2012년 7월 17일
You can use edge detectors and apply a threshold. BW = edge(I,'sobel',THRESH). Where 'I' is your intensity image, 'sobel' is the method and 'THRESH' is you threshold. There many other techniques like 'snakes' and curve fitting but they are basically the implemented by manipulating the intensity values of intensity image. A 'Snake' known as GVF(Gradiebt Vector Force) is probably your best option because it can draw a curve arround the region of interest and you should be able to find matlab code for it easily incase you cannot be bordered writing you owm code.
  댓글 수: 1
bethel o
bethel o 2012년 7월 18일
The matlab C-code is here, http://www.nitrc.org/frs/download.php/1890/gvfc.zip. You might need to compile a mex file from the C-code if it is not already done. Also check out http://www.iacl.ece.jhu.edu/static/gvf/ for lots of resources.
Good luck
Bethel

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by