代码搜索结果
找到约 5,749 项符合
RGB 的代码
example3_3.m
RGB=imread('flowers.tif');
image(RGB)
example4_8.m
RGB=imread('flowers.tif');
[x,y,z]=sphere; %定义球面
warp(x,y,z,RGB)
example4_12.m
RGB=imread('hr.jpg');
YCbCr=rgb2ycbcr(RGB);
subplot(1,2,1);
subimage(RGB);
title('原图像');
subplot(1,2,2);
subplot(1,2,2);
subimage(YCbCr);
title('变换后的图像');
example4_10.m
RGB=imread('hr.jpg');
HSV=rgb2hsv(RGB);
subplot(1,2,1);
subimage(RGB);
title('原图像');
subplot(1,2,2);
subimage(HSV);
title('变换后的图像');
example4_11.m
RGB=imread('hr.jpg');
YIQ=rgb2ntsc(RGB);
I=YIQ(:,:,1);
subplot(1,2,1);
subimage(RGB);
title('原图像');
subplot(1,2,2);
subimage(I);
title('变换后的图像');
b45.m
%顶点坐标为(40 , 50) , (40 , 250),(240,50)和(240,250)。
RGB=imread('flowers.tif');
imshow(RGB);
RGB2=imcrop(RGB,[40,50,200,200]);
figure,imshow(RGB2);
b62.m
RGB=imread('flowers.tif');
[x,y,z]=sphere; %定义球面
warp(x,y,z,RGB)
b67.m
RGB=imread('flowers.tif');
image(RGB)
b60.m
RGB=imread('hr.jpg');
HSV=rgb2hsv(RGB);
subplot(1,2,1);
subimage(RGB);
title('原图像');
subplot(1,2,2);
subimage(HSV);
title('变换后的图像');
b58.m
RGB=imread('hr.jpg');
YCbCr=rgb2ycbcr(RGB);
subplot(1,2,1);
subimage(RGB);
title('原图像');
subplot(1,2,2);
subplot(1,2,2);
subimage(YCbCr);
title('变换后的图像');