0
3
39
168
158
226
%% 图像的RGB通道 pic=imread('1.jpg'); R = pic(:,:,1);%显示图像的三个通道 G = pic(:,:,2); B = pic(:,:,3); subplot(221),imshow(pic); subplot(222),imshow(R); subplot(223),imshow(G); subplot(224),imshow(B); %以上是分别分离处图像...