代码搜索结果
找到约 5,749 项符合
RGB 的代码
example5_3.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);
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('变换后的图像');
ex622.m
%********************************************************
%程序:EX622.M
%功能:把一幅真彩图像转换为一个HSV模型空间对应的图像
%********************************************************
RGB=imread('pic001.jpg'); %将图像格式文件读入为M
ex620.m
%********************************************************
%程序:EX620.M
%功能:利用warp函数将一幅真彩图像映射到球面上
%********************************************************
RGB=imread('leaf.jpg'); %将图像格式文件读入为MAT
ex603.m
%********************************************************
%EX603.M
%功能:RGB图像显示
%********************************************************
RGB=imread('leaf.jpg'); %将图像格式文件读入为MATLAB图像对象数组数据
imag
ex623.m
%********************************************************
%程序:EX623.M
%功能:把一幅真彩图像转换为一个NTSC模型空间对应的图像
%********************************************************
RGB=imread('pic001.jpg'); %将图像格式文件读入