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

📄 mythirdview.cpp

📁 手写数字识别程序. 该程序实现了经典的模板匹配算法, 基于神经网络的匹配算法等. 是学习人工智能和图像处理的好的参考资料.
💻 CPP
字号:
// MyThirdView.cpp : implementation file
//

#include "stdafx.h"
#include "DSPLIT.h"
#include "MyThirdView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMyThirdView

IMPLEMENT_DYNCREATE(CMyThirdView, CView)

CMyThirdView::CMyThirdView()
{
}

CMyThirdView::~CMyThirdView()
{
}


BEGIN_MESSAGE_MAP(CMyThirdView, CView)
	//{{AFX_MSG_MAP(CMyThirdView)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyThirdView drawing

void CMyThirdView::OnDraw(CDC* pDC)
{
	CDocument* pDoc = GetDocument();
	// TODO: add draw code here
}

/////////////////////////////////////////////////////////////////////////////
// CMyThirdView diagnostics

#ifdef _DEBUG
void CMyThirdView::AssertValid() const
{
	CView::AssertValid();
}

void CMyThirdView::Dump(CDumpContext& dc) const
{
	CView::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMyThirdView message handlers

⌨️ 快捷键说明

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