代码搜索:RGB

找到约 8,819 项符合「RGB」的源代码

代码结果 8,819
www.eeworm.com/read/347520/11659289

m p0207.m

I=imread('Plane211.jpg'); I2=rgb2gray(I); imshow(I); figure,imshow(I2);
www.eeworm.com/read/157533/11694174

m 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);
www.eeworm.com/read/155707/11852933

readme

Connectix QuickCam VC Video4Linux Device Driver =============================================== Information Copyright (C) 2001 De Marchi Daniele rel
www.eeworm.com/read/344850/11856837

h texture.h

/* * read_texture() - read in an image file in SGI 'libimage' format * currently its very simple minded and converts all images * to RGBA8 regardless of the input format and returns the * or
www.eeworm.com/read/154061/11990912

m 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);
www.eeworm.com/read/151751/12177262

m 9-10.m

RGB=reshape(ones(64,1)*reshape(jet(64),1,192),[64,64,3]); %对数组进行整形变换,数组为 64×64×3 HSV=rgb2hsv(RGB); %RGB色彩模型转换成HSV色彩模型,函数在下面的“颜色模型转换”中具体讲解 H=HSV(:,:,1); S=HSV(:,:,2); V=HSV(:,:,3); %分别提取对应的色调、饱和
www.eeworm.com/read/148879/12417658

m 9-10.m

RGB=reshape(ones(64,1)*reshape(jet(64),1,192),[64,64,3]); %对数组进行整形变换,数组为 64×64×3 HSV=rgb2hsv(RGB); %RGB色彩模型转换成HSV色彩模型,函数在下面的“颜色模型转换”中具体讲解 H=HSV(:,:,1); S=HSV(:,:,2); V=HSV(:,:,3); %分别提取对应的色调、饱和
www.eeworm.com/read/250050/12439687

html 3.html

CSS Demo 首先用“rgb”三个字母然后是英文半角括号,在括号中按照红、绿、蓝三色顺序列举数值或者百分比值,三个数值之间用半角逗号分隔。 首先用“rgb”三个
www.eeworm.com/read/336217/12463184

m ex622.m

%******************************************************** %程序:EX622.M %功能:把一幅真彩图像转换为一个HSV模型空间对应的图像 %******************************************************** RGB=imread('pic001.jpg'); %将图像格式文件读入为M