代码搜索结果

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

imageutil.h

#include "IEDib.h" #include "IEFloatImage.h" void ImageDiffusionFloat(IEFloatImage* pImage, float lambda, float k, int iteration); void RGBToLUV(unsigned char *RGB,float *LUV,int size); void

animdate.cpp

// AnimDate.cpp: implementation of the AnimDate class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "AnimDate.h" CBmp24 BkBmp,foregroun

printer.cpp

//-----------------------------------------------------------------------------------// // Windows Graphics Programming: Win32 GDI and DirectDraw // //

color.h

#pragma once //-----------------------------------------------------------------------------------// // Windows Graphics Programming: Win32 GDI and DirectDraw // //

area.cpp

//-----------------------------------------------------------------------------------// // Windows Graphics Programming: Win32 GDI and DirectDraw // //

xujinfu.m

clear; close all; x1=imread('1.bmp'); x11=rgb2gray(x1); PSF=fspecial('motion',10,0); y1=deconvwnr(x11,PSF);%维纳滤波 subplot(1,2,1),imshow(x1); subplot(1,2,2),imshow(y1); x2=imread('2.bmp'); x2

getcolor.htm

varname = location.search.substr(1); function getcolor(event) { var hex = [0,1,2,3,4,5,6,7,8,9,'A','B','C','D','E','F']; if(event.clientX > 164 || event.clientY > 164) { return; }

f11_1.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')

14i.cpp

#include // colors() Separate a 16-bit RGB pixel into individual colors // IN: pixel is a 16-bit RGB value // OUT: red, green, and blue are returned as individual color values void c