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

📄 catching.h

📁 足球机器人功能demo
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -