base.h

来自「动态场景中运动目标检测提取与跟踪 对新手很有用」· C头文件 代码 · 共 58 行

H
58
字号
#if !defined(AFX_BASE_H__FCAE3B26_75D0_46A3_BFCC_987947AE79C2__INCLUDED_)
#define AFX_BASE_H__FCAE3B26_75D0_46A3_BFCC_987947AE79C2__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Base.h : header file
//
#include "highgui.h"
//#include "ximage.h"

/////////////////////////////////////////////////////////////////////////////
// CBase dialog

class CBase : public CDialog
{
public:
	//CxImage image;
	CvCapture* pCapture;
// Construction
public:
	CBase(CWnd* pParent = NULL);   // standard constructor
	~CBase();
	UINT processImage(LPVOID);
	//start

// Dialog Data
	//{{AFX_DATA(CBase)
	enum { IDD = IDD_DIALOG1 };
		// NOTE: the ClassWizard will add data members here
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CBase)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation

protected:

	// Generated message map functions
	//{{AFX_MSG(CBase)
	afx_msg void OnOpenfile();
	afx_msg void OnProcess();
	afx_msg void OnOpencam();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_BASE_H__FCAE3B26_75D0_46A3_BFCC_987947AE79C2__INCLUDED_)

⌨️ 快捷键说明

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