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

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

类别

Help CenterFile Exchange 中查找有关 Image Segmentation and Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by