代码搜索:RGB

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

代码结果 8,819
www.eeworm.com/read/410320/11293068

cpp video.cpp

//opencv C++ code to create a video #include "cv.h" #include "highgui.h" #include /* creating video from the image */ int main() { int key; IplImage* img = cvCreateImage(cvSize(500
www.eeworm.com/read/264029/11332122

m main_cat.m

i=imread('f2h.bmp'); j=imread('f2s.bmp'); k=imread('f2v.bmp'); re=cat(3,double(i),double(j),double(k)); %ff=imread('f.bmp'); %ff=rgb2hsv(ff); figure;imshow(re) %RESULT_DECODE=cat(3,RESULT
www.eeworm.com/read/408317/11393006

h draw.h

#pragma warning(disable : 4996) #include //绘制十字叉 void DrawCross(IplImage* img ,CvPoint center,int type) { CvPoint pt1,pt2; pt1.x=center.x-5; pt1.y=center.y; pt2.x=center.x+5; pt
www.eeworm.com/read/407650/11412661

cpp houghcircles.cpp

#include #include #include int main(int argc, char** argv) { IplImage* img; if( argc == 2 && (img=cvLoadImage(argv[1], 1))!= 0) { IplImage* gray = cvCr
www.eeworm.com/read/405539/11460922

c v4l.c

/* * v4l.c * * Copyright (C) 2001 Rasca, Berlin * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by *
www.eeworm.com/read/404527/11483769

cpp settingdlg.cpp

// SettingDlg.cpp : implementation file // #include "stdafx.h" #include "Graphic.h" #include "SettingDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = _
www.eeworm.com/read/404527/11484107

cpp settingdlg.cpp

// SettingDlg.cpp : implementation file // #include "stdafx.h" #include "Graphic.h" #include "SettingDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = _
www.eeworm.com/read/404527/11484527

cpp settingdlg.cpp

// SettingDlg.cpp : implementation file // #include "stdafx.h" #include "Graphic.h" #include "SettingDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = _
www.eeworm.com/read/404183/11490654

c lcd.c

#include #include #define Lcd_Hpixel (640) #define Lcd_Vpixel (240) #define testb(a,b) ((a)&(1
www.eeworm.com/read/347520/11659293

m p0210.m

I=imread('Plane211.jpg'); I2=rgb2gray(I); imshow(I); figure,imshow(I2); figure,subplot(1,2,1),imshow(I); subplot(1,2,2),imshow(I2);