我想扩展我在 Dicom 图像上获得的颜色图,为此我需要它们的灰度强度的最高值。我怎样才能在代码中做到这一点?
image_data, image_colormap= dicomread('dicomfile.dcm');
max(image_colormap)
返回[]
:-/
我想扩展我在 Dicom 图像上获得的颜色图,为此我需要它们的灰度强度的最高值。我怎样才能在代码中做到这一点?
image_data, image_colormap= dicomread('dicomfile.dcm');
max(image_colormap)
返回[]
:-/
这对我有用:
I = dicomread('dicomimg.dcm');
max(I(:))
对于真彩色/灰度图像,地图为空
从文档中,
[X,map] = dicomread(...) 返回图像 X 和颜色映射图。如果 X 是灰度或真彩色图像,则 map 为空。
对于灰度图像,您可以使用max(image_data(:))