필터 지우기
필터 지우기

what does the minus value of pixel mean in MRI

조회 수: 6 (최근 30일)
song
song 2015년 11월 6일
댓글: Walter Roberson 2015년 11월 6일
I got one MRI image. when I read it into MATLAB with the function 'dicomread', I found that the pixel format was int16, some pixels got a minus value. how can I convert the pixel into 0-255?
  댓글 수: 1
Walter Roberson
Walter Roberson 2015년 11월 6일
What is the Photometric Interpretation set to?
Also is the negative after the rescale? CT images for example often want to use Hounsfield units, which can be negative; see https://www.medicalconnections.co.uk/kb/Hounsfield_Units

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

채택된 답변

Image Analyst
Image Analyst 2015년 11월 6일
Try using mat2gray():
image8bit = uint8(255*mat2gray(double(image16bit)));
This will scale it from min (the negative number) to max -> [0,255]. If you want to get rid of negative numbers in advance, do this:
image16bit(image16bit < 0) = 0;
image8bit = uint8(255*mat2gray(double(image16bit)));
  댓글 수: 2
song
song 2015년 11월 6일
thanks for your answer . but I get another questions why we get minus value in MRI data . what does that mean ? you know that the intensity of one pixel usually is a positive value.
Image Analyst
Image Analyst 2015년 11월 6일
I have no idea why the data is signed instead of uint16, and why there are negative values. Perhaps ask the radiologist who created it.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MRI에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by