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

📄 morphologydlg.cpp

📁 《数字图像处理与分析》光盘使用说明 本光盘主要包括两部分内容: 1、 作者编制的基于MATLAB和基于VC++实现的数字图像处理软件
💻 CPP
字号:
// morphologyDlg.cpp : implementation file
//

#include "stdafx.h"
#include "demo.h"
#include "morphologyDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// morphologyDlg dialog


morphologyDlg::morphologyDlg(CWnd* pParent /*=NULL*/)
	: CDialog(morphologyDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(morphologyDlg)
	m_maskSelect = 0;
	//}}AFX_DATA_INIT
}


void morphologyDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(morphologyDlg)
	DDX_Radio(pDX, IDC_RADIO1, m_maskSelect);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// morphologyDlg message handlers

⌨️ 快捷键说明

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