资源简介
基于数字识别图像识别的神经网络法,很有用的,有C++源代码
代码片段和文件信息
// Onr.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Onr.h“
#include “OnrDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// COnrApp
BEGIN_MESSAGE_MAP(COnrApp CWinApp)
//{{AFX_MSG_MAP(COnrApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// COnrApp construction
COnrApp::COnrApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only COnrApp object
COnrApp theApp;
/////////////////////////////////////////////////////////////////////////////
// COnrApp initialization
BOOL COnrApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
COnrDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2008-10-09 20:56 数字识别之神经网络法\
目录 0 2008-10-09 20:56 数字识别之神经网络法\Debug\
文件 114775 2002-11-19 08:26 数字识别之神经网络法\Debug\Onr.exe
文件 709 1999-07-27 05:29 数字识别之神经网络法\learn.dat
文件 21672 2003-01-07 08:00 数字识别之神经网络法\Onr.aps
文件 2021 1999-07-26 23:21 数字识别之神经网络法\Onr.cpp
文件 4317 2002-11-19 07:01 数字识别之神经网络法\Onr.dsp
文件 531 1999-07-26 23:21 数字识别之神经网络法\Onr.dsw
文件 32768 2001-04-21 13:33 数字识别之神经网络法\Onr.exe
文件 1299 1999-07-26 23:21 数字识别之神经网络法\Onr.h
文件 82944 2003-01-07 08:01 数字识别之神经网络法\Onr.ncb
文件 68608 2003-01-07 08:01 数字识别之神经网络法\Onr.opt
文件 687 2002-11-19 08:26 数字识别之神经网络法\Onr.plg
文件 6408 2002-11-19 08:26 数字识别之神经网络法\Onr.rc
文件 12336 2002-11-19 08:17 数字识别之神经网络法\OnrDlg.cpp
文件 1949 2002-11-19 07:15 数字识别之神经网络法\OnrDlg.h
文件 582 2001-04-21 13:35 数字识别之神经网络法\ReadMe.txt
目录 0 2008-10-09 20:56 数字识别之神经网络法\res\
文件 1095 1999-12-13 13:12 数字识别之神经网络法\resource.h
文件 1078 2000-02-07 02:54 数字识别之神经网络法\res\Onr.ico
文件 395 1999-07-26 23:21 数字识别之神经网络法\res\Onr.rc2
文件 201 1999-07-26 23:21 数字识别之神经网络法\StdAfx.cpp
文件 987 1999-07-26 23:21 数字识别之神经网络法\StdAfx.h
文件 709 1999-07-27 05:33 数字识别之神经网络法\test.dat
相关资源
- HandWriting Predict 手写数字识别小项目
- 数字识别 c++ MFC
- 手写数字识别_附带VC++源程序和训练素
- 0-9手写数字识别C++实现
- opencv之数字识别
- C++/OpenCV2.4.xx印刷数字精确识别源码
- opencv手写数字识别C++
- C++/OpenCV2.4.9 数字精确识别源码
- 基于C++的手写数字识别系统
- opencv数字识别.cpp
- 基于KNN实现的手写体数字识别
- Opencv2.4.12 SVM手写数字识别
- C++OpenCV实现数字识别
- C++实战源码-手写数字识别程序
- Opencv3.0 手写数字识别(Hog特征+SVM分类
- 手写数字识别之Fisher线性判别
评论
共有 条评论