I have a series of DICOM files that I'm displaying through implay but I'm not sure how to use the autoscaling syntax so the video doesn't look all whitewashed. Usually with imshow or imtool its "imtool(I,'DisplayRange',[])" but how can I do the same to implay?
D = dir('*.dcm');
baseFilenames = {D.name};
numberOfFiles = length(baseFilenames);
for k = 1:numberOfFiles
fullFileName = baseFilenames{k};
imArray(:,:,k) = dicomread(fullFileName);
end
implay(imArray)