📜  matlab中的rgb到灰色 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:57.779000             🧑  作者: Mango

代码示例1
img=imread('C:\Users\..image..path..\img.file_type')
RGB=imread('C:\Users\..image..path..\img.file_type');
imshow(RGB)
%impixelinfo
img=rgb2gray(RGB)
imshow(img)
impixelinfo