代码搜索结果

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

divx.cpp

// Divx.cpp : Defines the entry point for the DLL application. // #include "stdafx.h" #include "Divx.h" #include "mp4_decoder.h" #include "global.h" //#include "yuv2rgb.h" #include "decore.

p0804.m

I=imread('Car.jpg'); [y,x,z]=size(I); myI=double(I); %%%%%%%%%%% RGB to HSI %%%%%%%% tic % 测定算法执行的时间,开始计时 %%%%%%%%%%% 统计分析 %%%%%%%%%%%%%%% %%%%%%%% Y 方向 %%%%%%%%%% Blue_y=zeros(y,1); for

style.css

body { background-color: white; border: 0px; margin: 0px; padding: 0px; } .corner { width: 200px; height: 80px; text-align: center; } .banner { background-color: rgb(11

mapug.html

M_Map: A Mapping package for Matlab

trainsfea.m

function Bool = TrainsFea(num,para) N = 30; f = imread(strcat(num2str(num),'.bmp')); plate = (f(:,:,1) == 255) & (f(:,:,2) == 0) & (f(:,:,3) == 0) ; f = rgb2gray(f); f(plate == 1) = 255; %

sample_014_html背景.txt

标签中的背景颜色(bgcolor)、背景(background)和文本(t

代码29.6.3.txt

function fft_Callback(hObject, eventdata, handles) file=get(handles.edit1,'string'); % 得到图像文件名和路径 X=imread(file); % 读入图像 X=rgb2gray(X); % 灰度转换 fft

carreco.m

I=imread('Car.jpg'); [y,x,z]=size(I); myI=double(I); %%%%%%%%%%% RGB to HSI %%%%%%%% tic % 测定算法执行的时间,开始计时 %%%%%%%%%%% 统计分析 %%%%%%%%%%%%%%% %%%%%%%% Y 方向 %%%%%%%%%% Blue_y=zeros(y,1); for

image.h

#ifdef __cplusplus extern "C" { #endif enum imgtyp {DEFAULT=0, P2,P3,P5,P6, PS, GREY,RGB,RED,GREEN,BLUE,COLOR}; typedef struct { int sizeX,sizeY; GLubyte *data; } PPMimage;