delectmessage.cpp

来自「本课题的主要内容是图像预处理,它主要从摄像头中获取人脸图像然后进行处理,以便提高」· C++ 代码 · 共 45 行

CPP
45
字号
// DelectMessage.cpp : implementation file
//

#include "stdafx.h"
#include "FaceDetect.h"
#include "DelectMessage.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// DelectMessage dialog


DelectMessage::DelectMessage(CWnd* pParent /*=NULL*/)
	: CDialog(DelectMessage::IDD, pParent)
{
	//{{AFX_DATA_INIT(DelectMessage)
	m_Name = _T("");
	//}}AFX_DATA_INIT
}


void DelectMessage::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(DelectMessage)
	DDX_Text(pDX, IDC_EDIT1, m_Name);
	DDV_MaxChars(pDX, m_Name, 15);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(DelectMessage, CDialog)
	//{{AFX_MSG_MAP(DelectMessage)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// DelectMessage message handlers

⌨️ 快捷键说明

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