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.
回答 (1 件)
Nitin
2013 年 6 月 16 日
0 投票
This might be a http://blogs.mathworks.com/steve/2010/07/30/visualizing-regionprops-ellipse-measurements/ to start
4 件のコメント
Josh
2013 年 6 月 18 日
Matt Kindig
2013 年 6 月 19 日
編集済み: Matt Kindig
2013 年 6 月 19 日
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
2013 年 6 月 19 日
Matt Kindig
2013 年 6 月 19 日
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.
カテゴリ
ヘルプ センター および File Exchange で DICOM Format についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!