ChafenMul.h
上传用户:smdfuse
上传日期:2015-11-06
资源大小:98k
文件大小:1k
源码类别:

图形图象

开发平台:

Visual C++

  1. #ifndef CHAFENMUL_INCLUDE
  2. #define CHAFENMUL_INCLUDE
  3. class ChafenMul{
  4. public:
  5. ChafenMul(int width,int height,int targetThreshold);
  6. ~ChafenMul();
  7. public:
  8. unsigned char *frame1; //第1帧数据
  9. unsigned char *frame2; //第2帧数据
  10. unsigned char *frame3; //第3帧数据
  11. unsigned char *frame4; //第4帧数据
  12. int frameWidth; int frameHeight; //帧宽度和高度
  13. int readyCount;       //输入帧的数量
  14. int targetThreshold;  //目标检测阈值
  15. public:
  16. void PrepareData(unsigned char *buffer,int width,int height);
  17. void process();
  18. };
  19. #endif