📄 humanmotion.h
字号:
// HumanMotion.h: interface for the HumanMotion class.
//
//////////////////////////////////////////////////////////////////////
#include "cv.h"
#include <list>
#include <vector>
using namespace std ;
class HumanMotion
{
public:
int Start();
HumanMotion();
virtual ~HumanMotion();
private:
int drawContours(IplImage *dst);
int KeyControl();
int Test_cvMUL2(IplImage *grey);
int WarpPerspective(IplImage *grey);
int getActivityArea(IplImage *grey, CvPoint &top_pt,CvPoint &bottom_pt);
int getContour( IplImage* src,IplImage* pre_src );
CvPoint2D32f Point_to_32f(CvPoint pt);
int analyze_contour(IplImage* grey_image);
int main_loop( int useCAM);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -