用来读取一幅图片的。I表示像素矩阵,M是colormap,一般用不着。I=imread('test.jpg');
< If set, always convert image to the single channel grayscale image (codec internal conversion).IMREAD_COLOR =1,//!< If set, always convert image to the 3 channel BGR color image.IMREAD_ANYDEPTH =2,//!< If set, return 16-bit/32-bit image when the input has the corresponding depth...
在图像中,每一行 of `map` 分别代表了红色(R)、绿色(G)、蓝色(B)的分量,它涵盖了图像中出现的所有颜色信息。这意味着 `map` 是一个颜色查找表(Color Lookup Table, CLUT),它将图像中的颜色转换为显示器或其他输出设备能够理解的数值。数据矩阵 `I` 的每一个值都指向 `map` 中的某...
IM1=IM11(:,:,1)IM1 is defined by the first channel (r) of color image(rgb) IM11