代码搜索结果

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

ov7660.c

/* * OV7660 CMOS Camera Sensor Initialization */ #include "camera.h" static void init_rgb565_qvga_25fps_new(void) { sensor_write_reg(0x12, 0x80); udelay(20000); sensor_write_reg(0x11, 0x80); se

err.jsp

输入有错 请检查邮件地址是否正确,注意收件人不能为空!!

p0703.m

I=imread('badcell.bmp'); [y,x,z]=size(I); myI=double(I); % 图象的数据类型为无符号整型,必须转换为双精度实型才能计算 %%%%%%%%%%% RGB to HSI %%%%%%%% H=zeros(y,x); S=H; HS_I=H; for i=1:x for j=1:y

mycarlocal.m

%程序功能:实现车牌自动定位 %作者:重庆大学 田建国 QQ:363966533 %编写时间:2007.04.10 clear;clc;close all I=rgb2gray(imread('5.jpg')); %I=imread('14.bmp'); tic %计时开始 [height,width]=size(I); %预处理 I_edge=zeros(height,

a60.m

load xpmndrll image(X2) title('原始彩色索引图像') colormap(map); colorbar %================================ %分解彩色索引图像为RGB分量 R=map(X2,1); R=reshape(R,size(X2)); G=map(X2,2); G=reshape(G,size(X2)); B

test.h

// 编码表RGB数组 const BYTE C[4][256][4] = { { // 彩虹编码 1 { 0, 0, 0,0 }, { 7, 0, 0,0 }, { 15, 0, 0,0 }, { 23, 0, 0,0 }, //4 { 31, 0, 0,0 }, { 39, 0, 0,0 }, { 47, 0, 0,0 }, {

boxcount-matlab.txt

clc; clear all; L=imread('55.bmp'); L=rgb2gray(L); level = graythresh(L); X=im2bw(L,level); imshow(X); [m n]=size(X); if size(X,1)~=size(X,2) error('The size of X must be N*N.'); %长和宽必须要相等

test.h

// 编码表RGB数组 const BYTE C[4][256][4] = { { // 彩虹编码 1 { 0, 0, 0,0 }, { 7, 0, 0,0 }, { 15, 0, 0,0 }, { 23, 0, 0,0 }, //4 { 31, 0, 0,0 }, { 39, 0, 0,0 }, { 47, 0, 0,0 }, {

p0703.m

I=imread('cancer.bmp'); [y,x,z]=size(I); myI=double(I); % 图象的数据类型为无符号整型,必须转换为双精度实型才能计算 %%%%%%%%%%% RGB to HSI %%%%%%%% H=zeros(y,x); S=H; HS_I=H; for i=1:x for j=1:y

example7_1.m

load xpmndrll image(X2) title('原始彩色索引图像') colormap(map); colorbar %================================ %分解彩色索引图像为RGB分量 R=map(X2,1); R=reshape(R,size(X2)); G=map(X2,2); G=reshape(G,size(X2)); B