ChafenMul.h
上传用户:smdfuse
上传日期:2015-11-06
资源大小:98k
文件大小:1k
- #ifndef CHAFENMUL_INCLUDE
- #define CHAFENMUL_INCLUDE
- class ChafenMul{
- public:
- ChafenMul(int width,int height,int targetThreshold);
- ~ChafenMul();
- public:
- unsigned char *frame1; //第1帧数据
- unsigned char *frame2; //第2帧数据
- unsigned char *frame3; //第3帧数据
- unsigned char *frame4; //第4帧数据
- int frameWidth; int frameHeight; //帧宽度和高度
- int readyCount; //输入帧的数量
- int targetThreshold; //目标检测阈值
- public:
- void PrepareData(unsigned char *buffer,int width,int height);
- void process();
-
- };
- #endif