how to write script window level

조회 수: 3 (최근 30일)
mohd akmal masud
mohd akmal masud 2021년 7월 1일
답변: Cris LaPierre 2021년 7월 2일
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

답변 (1개)

Cris LaPierre
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])

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by