defs.h

来自「This distribution contains source code f」· C头文件 代码 · 共 52 行

H
52
字号
/*  This file contains general program definitions.    @author Rob Hess  @version 1.0.0-20060306*/#ifndef DEFS_H#define DEFS_H/********************************* Includes **********************************//* From standard C library */#include <math.h>#include <stdio.h>#include <errno.h>#include <stdarg.h>#include <stdlib.h>#include <unistd.h>/* From OpenCV library */#include "cv.h"#include "cxcore.h"#include "highgui.h"/* From GSL */#include <gsl/gsl_rng.h>#include <gsl/gsl_randist.h>/******************************* Defs and macros *****************************/#ifndef TRUE#define TRUE 1#endif#ifndef FALSE#define FALSE 0#endif#ifndef MIN#define MIN(x,y) ( ( x < y )? x : y )#endif#ifndef MAX#define MAX(x,y) ( ( x > y )? x : y )#endif#ifndef ABS#define ABS(x) ( ( x < 0 )? -x : x )#endif/********************************** Structures *******************************/#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?