資源簡介
基于數字識別圖像識別的神經網絡法,很有用的,有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
評論
共有 條評論