Automatic detection of veterbrae regions.

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.

Réponses (1)

Nitin
Nitin le 16 Juin 2013

0 votes

4 commentaires

Josh
Josh le 18 Juin 2013
Thanks Ashvin you are very helpful.I am still reviewing and see how I can apply it to my work.
Matt Kindig
Matt Kindig le 19 Juin 2013
Modifié(e) : Matt Kindig le 19 Juin 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
Josh le 19 Juin 2013
Thanks Matt, but this is my question; 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.
Thanks once again
Matt Kindig
Matt Kindig le 19 Juin 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.

Connectez-vous pour commenter.

Catégories

Question posée :

le 15 Juin 2013

Community Treasure Hunt

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

Start Hunting!

Translated by