Automatic detection of veterbrae regions.
Afficher commentaires plus anciens
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.
1 commentaire
Josh
le 15 Juin 2013
Réponses (1)
Nitin
le 16 Juin 2013
0 votes
This might be a http://blogs.mathworks.com/steve/2010/07/30/visualizing-regionprops-ellipse-measurements/ to start
4 commentaires
Josh
le 18 Juin 2013
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
le 19 Juin 2013
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.
Catégories
En savoir plus sur Neuroimaging dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!