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

📄 childview.h

📁 实时视频跟踪源码
💻 H
字号:
// ChildView.h : interface of the CChildView class
//


#pragma once

#include "VideoCapWnd.h"

// CChildView window

class CChildView : public CWnd
{
// Construction
public:
	CChildView();

// Attributes
public:
    CVideoCapWnd m_theVideoCapWnd;
    
// Operations
public:

// Overrides
	protected:
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);

// Implementation
public:
	virtual ~CChildView();

	// Generated message map functions
protected:
	afx_msg void OnPaint();
	DECLARE_MESSAGE_MAP()
	
public:  
    static BYTE bThreshold;
    static DWORD dwRectangle;
    static DWORD dwSegment;
    
    static LRESULT FrameCallbackProc(HWND hWnd, LPVIDEOHDR lpVideoHdr);
    
    afx_msg void OnDeviceRefresh();
    afx_msg void OnDeviceName(UINT nID);
    afx_msg void OnCaptureSource();
    afx_msg void OnCaptureFormat();
    afx_msg void OnCaptureDisplay();
    afx_msg void OnSize(UINT nType, int cx, int cy);
    afx_msg void OnCaptureZoom(UINT nID);
    afx_msg void OnTrackBrightness();
    afx_msg void OnTrackStop();
    afx_msg void OnCaptureStop();
};

⌨️ 快捷键说明

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