how to write script window level
2 ビュー (過去 30 日間)
古いコメントを表示
Hi
i want to write window level 3189 1595.
[spect map]=dicomread('I-131sphere10nisbah1', 'frame', 45);
imshow(spect[3189 1595])
but image not appear
anyone can help me
0 件のコメント
回答 (1 件)
Cris LaPierre
2021 年 7 月 2 日
You need to separate your window level from your image data with a comma. Also, the low value should come first.
[spect map]=dicomread('I-131sphere10nisbah1', 'frame', 45);
imshow(spect,[1595 3189])
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!