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

📄 video demo.h

📁 上述是VIsualc++ 数字图像处理一书的源码
💻 H
字号:
// Video Demo.h : main header file for the VIDEO DEMO application
//

#if !defined(AFX_VIDEODEMO_H__2F3EA7BB_E6A9_4BF3_BCD7_39D5D4F49B7D__INCLUDED_)
#define AFX_VIDEODEMO_H__2F3EA7BB_E6A9_4BF3_BCD7_39D5D4F49B7D__INCLUDED_

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

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

// 数据管理
#include "DataManager.h"
#include "MediaSource.h"
// CImageProcessingCenterBCGEApp:
// See Image Processing Center BCGE.cpp for the implementation of this class
//
#include "video demodoc.h"
#include "resource.h"       // main symbols

/////////////////////////////////////////////////////////////////////////////
// CVideoDemoApp:
// See Video Demo.cpp for the implementation of this class
//

class CVideoDemoApp : public CWinApp
{
public:
	CVideoDemoApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CVideoDemoApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

public:
	DataManager dm;           // 数据管理器

	ImageData *curImageData;  // 当前图像数据
	ImageData *lastImageData; // 上一次选择的图像数据

	VideoData *curVideo;      // 当前视频(目前版本不对视频进行管理,只打开视频)

// Implementation
	//{{AFX_MSG(CVideoDemoApp)
	afx_msg void OnAppAbout();
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

extern CVideoDemoApp theApp;
/////////////////////////////////////////////////////////////////////////////

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

#endif // !defined(AFX_VIDEODEMO_H__2F3EA7BB_E6A9_4BF3_BCD7_39D5D4F49B7D__INCLUDED_)

⌨️ 快捷键说明

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