read a radiology image series ( DICOM ) on MATLAB platform
4 ビュー (過去 30 日間)
古いコメントを表示
hello sir, can you please send me the code to display DICOM images on MATLAB platform, and please tell me is there any tool for MATLAB for IMAGE PROCESSING ???? please its urgent help me.
0 件のコメント
採用された回答
David Young
2012 年 1 月 2 日
MATLAB has an Image Processing Toolbox which has many tools for image processing, including the function dicomread. To display an image stored in DICOM format, the following will normally be sufficient:
img = dicomread('filename');
imshow(img);
2 件のコメント
Walter Roberson
2012 年 1 月 2 日
The Image Processing Toolbox is an optional (extra cost) toolbox that must be purchased for the Academic or Professional versions.
It is, however, included as part of the MATLAB Student Version.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!