Automatic detection of veterbrae regions.
Show older comments
I would like to detect automatically the vertebral body in a MRI image (DICOM). To know the centroid's coordinates.To detect veterbrae and location. To detect the centers of disks. Finally evaluate the space between the disk and the veterbrae.
Answers (1)
Nitin
on 16 Jun 2013
0 votes
This might be a http://blogs.mathworks.com/steve/2010/07/30/visualizing-regionprops-ellipse-measurements/ to start
4 Comments
Josh
on 18 Jun 2013
Matt Kindig
on 19 Jun 2013
Edited: Matt Kindig
on 19 Jun 2013
If you upload one of your images (to tinypic.com, for example) for us to view, we would be able to give more specific advice.
For your purposes, I would do the following:
dcm = dicomread('/path/to/an/image.dcm'); %read in DICOM
imshow(dcm, []); %display DICOM
colormap jet; %switch to colored display, so that is renders more clearly in jpeg
im = getframe(gcf);
imwrite(im.cdata, 'sampleimg.jpg'); %write out jpeg
And then upload sampleimg.jpg to tinypic.com, and link to it in your question.
Josh
on 19 Jun 2013
Matt Kindig
on 19 Jun 2013
Yes, I get what you are trying to do. But to do this, you need to be able to segment out the vertebral body, which means that we need to have a sample image for reference. Please, help us help you.
Categories
Find more on Neuroimaging in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!