MATLAB: To read out DICOM pixel value

dicomImage Processing Toolboxpixel value

How can I read out the value of a specific pixel in a DICOM image?

Best Answer

Use dicomread() to read it in. Then use impixel() or indexing to get the value:
grayImage = dicomread(filename);
grayLevel = grayImage(row, column);