⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 humanmotion.h

📁 基于OpenCV的计算机视觉技术实现.rar
💻 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 + -