catching.h

来自「足球机器人功能demo」· C头文件 代码 · 共 33 行

H
33
字号
// Catching.h: interface for the CCatching class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_CATCHING_H__6E55190A_6604_48E5_B750_DC042E4A5773__INCLUDED_)
#define AFX_CATCHING_H__6E55190A_6604_48E5_B750_DC042E4A5773__INCLUDED_

#include "Vision.h"
#include "IBehavior.h"

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CCatching : public IBehavior 
{
public:
	void output(CString *strShow,CListBox *inList);
	void AfterUpdateVideoSample(BYTE * pBuffer, long lWidth,long lHeight,double dbTime,UINT nState);
	CCatching();
	virtual ~CCatching();

	CListBox* m_BehShow;
	CListBox* m_ClrShow;
	CVision m_CV;
	YUVParam m_para;
	CString m_strShow;

	IBehavior* m_poverlookfind;
};

#endif // !defined(AFX_CATCHING_H__6E55190A_6604_48E5_B750_DC042E4A5773__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?