代码搜索:RGB

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

代码结果 8,819
www.eeworm.com/read/357171/10213989

m 8-5.m

[X,map]=imread('canoe.tif'); Image_Type_YN1=isind(X); %索引图像的读取与判断 I = imread('moon.tif'); Image_Type_YN2=isgray(I); %灰度图像的读取与判断 RGB=imread('flowers.tif'); Image_Type_YN3=isrgb(RGB); %真彩色图像的读
www.eeworm.com/read/425559/10347375

c fan.c

#include "Fan.h" /////////////////////////////////////////////// //初始化7个方块中相应的小方块。 ////////////////////////////////////////////// void Star(TimerApp * sTimerApp) { int i; //JulianType jul
www.eeworm.com/read/423751/10534251

css style.css

/* CSS definition file containing sitestyle stylesheets */ BODY { background-color: rgb(255,255,255);} A:active { color: rgb(0,0,0);} A:link { color: rgb(51,51,0);} A:hover { color: rgb(102,153
www.eeworm.com/read/159906/10591625

m 8-5.m

[X,map]=imread('canoe.tif'); Image_Type_YN1=isind(X); %索引图像的读取与判断 I = imread('moon.tif'); Image_Type_YN2=isgray(I); %灰度图像的读取与判断 RGB=imread('flowers.tif'); Image_Type_YN3=isrgb(RGB); %真彩色图像的读
www.eeworm.com/read/418361/10950146

h pixel_ops.h

static inline unsigned int rgb_to_pixel8(unsigned int r, unsigned int g, unsigned int b) { return ((r >> 5) > 5) > 6); } static i
www.eeworm.com/read/418033/10967012

h 绘制饼状图3view.h

// 绘制饼状图3View.h : interface of the CMy3View class // ///////////////////////////////////////////////////////////////////////////// #if !defined(AFX_3VIEW_H__77B674E2_4A66_43FC_97F4_3858212E670C__
www.eeworm.com/read/470944/6902244

cpp dynsplitview2.cpp

// DynSplitView2.cpp : implementation file // #include "stdafx.h" #include "DSplit.h" #include "DynSplitView2.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE
www.eeworm.com/read/469046/6984274

m 8-5.m

[X,map]=imread('canoe.tif'); Image_Type_YN1=isind(X); %索引图像的读取与判断 I = imread('moon.tif'); Image_Type_YN2=isgray(I); %灰度图像的读取与判断 RGB=imread('flowers.tif'); Image_Type_YN3=isrgb(RGB); %真彩色图像的读
www.eeworm.com/read/140797/7146777

ppmtolss16

#!/usr/bin/perl ## $Id$ ## ----------------------------------------------------------------------- ## ## Copyright 2004 H. Peter Anvin - All Rights Reserved ## ## This program is free software;
www.eeworm.com/read/462042/7211726

txt 代码11-3.txt

[X,map] = imread('trees.tif'); % 读入图像 gmap = rgb2gray(map); % 转换为灰度图像 figure, imshow(X,map), figure, imshow(X,gmap); % 显示原图和转换后图像