代码搜索:RGB

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

代码结果 8,819
www.eeworm.com/read/334338/12609458

cpp xpbutton.cpp

#include #include #include "stdafx.h" #include "XPButton.h" //#if(WINVER >= 0x0501) #ifdef THEMEAPI #include #else #define NO_THEMEAPI_FOUND #define
www.eeworm.com/read/146577/12638518

cpp main.cpp

// main.cpp : Defines the entry point for the console application. // #include #include using std::cout; using std::cerr; using std::endl; #include "../cimpl/cimpl.h"
www.eeworm.com/read/135871/13891027

asp safecode.asp

www.eeworm.com/read/135871/13891168

asp safecode.asp

www.eeworm.com/read/300378/13916703

m program_01_03.m

%原始索引图像 load trees %转换为灰度图像 I = ind2gray(X,map); figure(1) subplot(2,2,1);imshow(X,map);title('索引图像'); subplot(2,2,2);imshow(I);title('转换后的灰度图像'); %原始真彩图像 RGB = imread('peppers.png'); %转换为索引图
www.eeworm.com/read/237911/13919716

cpp day11doc.cpp

// Day11Doc.cpp : implementation of the CDay11Doc class // #include "stdafx.h" #include "Day11.h" #include "Line.h" #include "Day11Doc.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_
www.eeworm.com/read/237003/13984035

cpp extract.cpp

#include "testsuite.h" #include BZ_USING_NAMESPACE(blitz) class RGB24 { public: static const int red=0, green=1, blue=2; RGB24() { } RGB24(char r, char g, char b) {
www.eeworm.com/read/236864/13995025

c can.c

#include #include #include "CAN.h" #include "def.h" #include "2410addr.h" #include "option.h" #include "GUI.h" #include "2410lib.h" #include "lcd.h" #include "spi.h" #i
www.eeworm.com/read/133469/14042106

m figure7.m

RGB=imread('autumn.tif'); I=rgb2gray(RGB); imshow(I); figure(2); J=dct2(I); imshow(log(abs(J)),[]), colormap(jet(64)), colorbar; figure(3); J(abs(J)
www.eeworm.com/read/133469/14042144

m figure12.m

load chess; RGB=imread('autumn.tif'); figure(1); imshow(RGB); figure(2); Y=dither(RGB,map); imshow(Y,map);