matlab读取RGB数据

%image为输出图像,jpg格式
image(:,:,1)=R;
image(:,:,2)=G;
image(:,:,3)=B;
imshow(image);
或者
imshow(cat(3,R,G,B));

你可能感兴趣的:(matlab,matlab)