代码搜索结果

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

egg.h

/***************************************************************************** 版权所有 (C) 2005-2005 Sun Zhigang (http://egg.sunner.cn) 该系统是自由软件;您可以按照自由软件基金会所公布的GNU通用公共许可证(GPL)进行 修改或重新发布;许可证

ex620.m

%******************************************************** %程序:EX620.M %功能:利用warp函数将一幅真彩图像映射到球面上 %******************************************************** RGB=imread('leaf.jpg'); %将图像格式文件读入为MAT

ex623.m

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

ex624.m

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

about.cpp

////////////////////////////////////////////////////////////////////////////// //类名:About //功能:"关于"对话框 ///////////////////////////////////////////////////////////////////////////// #include "std

font.h

typedef struct RGB24 { unsigned char red; unsigned char green; unsigned char blue; } RGB24; typedef struct IMG { int width; int height; int depth; int format; char *bu

b61.m

RGB1=imread('pic005.jpg'); RGB2=imread('pic007.jpg'); I1=imread('rice.tif'); I2=imread('testpat1.tif'); subplot(2,2,1); %将图形窗口等分成4部分 subimage([0,500],[0,500],RGB1); subplot(2,2,2); subimage([

start.m

function START %by Bogdan Cristea %e-mail: cristeab@gmail.com %modified 27.10.2001 %tested under Matlab 6.0 %modified 21.07.2005 %tested under Matlab 7.0 %modified 27.08.2005 %extended help

代码11-7.txt

load wmandril; % 载入图像 figure(1); % 建立新窗口 imshow(X,map); % 显示原图 I=ind2rgb(X,map); % 转换为真彩色图像 figure(2); % 建立新窗口 imshow(I); % 显示转换后的图像

代码24-7.txt

RGB = imread('test.bmp'); % 读入图像 figure, % 新建窗口 imshow(RGB), % 显示原始图像 title('Original Image');