Truncate my image intensity values in the range [-100 400]

조회 수: 2 (최근 30일)
Emerson Nithiyaraj
Emerson Nithiyaraj 2019년 9월 10일
댓글: Emerson Nithiyaraj 2019년 9월 10일
Hello,
I have a medical raw CT 'NIFTI' image file of type double where the values of the image are in the range from -2000 to 2004. The values are the Hounsfield units (HU). The image looks like below.
dd.jpg
Now as mentioned in a paper "No special pre-processing was performed except that we truncated the image intensity values of all scans to the range of [-200; 200] HU to ignore irrelevant image details". When i load this image file in an online NIFTI file viewer i could adjust the values and the same image looks like below.
ssss.jpg
But in matlab i want to truncate my image values between -100 and 400 to get a image as dislpayed above. How can i do that?

채택된 답변

Walter Roberson
Walter Roberson 2019년 9월 10일
TruncatedImage = max( min(YourImage, 400), -100 );
  댓글 수: 3
Walter Roberson
Walter Roberson 2019년 9월 10일
How are you viewing it? Are you using imagesc()? Are you using imshow() with a second parameter of [] ?
Emerson Nithiyaraj
Emerson Nithiyaraj 2019년 9월 10일
with the parameter [] inside imshow

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with Image Processing Toolbox에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by