代码搜索结果
找到约 10,000 项符合
Image 的代码
image.dsp
# Microsoft Developer Studio Project File - Name="image" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Con
image.cpp
/* 程序名: image.cpp
功能: 本程序显示如何用C++类来创建和显示图像,这个C++类在 cxcore.hpp 中定义,与 矩阵类(CvMatrix) 相似
*/
#include "cv.h"
#include "highgui.h"
int main( int argc, char** argv )
{
// 结构中载入图像:图像也是BMP图像(cvLoadImag
image.h
/*==========================================================================;
*
* 光线游戏引擎(Light Game Engine)
*
* 版权所有 (C) 2005-2007 康 旭。 保留所有权利。
* Copyright (C) KangXu. All Rights Reserve
image.c
#include "medit.h"
#include "sproto.h"
#include "extern.h"
PPMimage *loadPPM(const char *imgname,int *type) {
pPPMimage result;
FILE *fp;
int i,k,typimg,ret,r,g,b,s,maxval,bitsize
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;