humanmotion.h

来自「基于OpenCV的计算机视觉技术实现.rar」· C头文件 代码 · 共 40 行

H
40
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?