A customer has an issue in which he is reading a dicom file with the code below using multiple systems:
image=fltarr(400,400)
fn=file_which()
image=read_dicom(fn)
print,max(image),min(image)
On some systems, the output is "1638 0" (which is the correct result) and on other systems, the output is "0 0" (the image is not being read correctly).
|