• 大小: 7.36MB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2023-11-02
  • 语言: C/C++
  • 标签: 神经网络  识别  

资源简介

基于ANN的神经网络识别数字系统,通过训练,能够很好的地识别出图片上的数字,VC6.0项目。

资源截图

代码片段和文件信息

// DigitRec.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “DigitRec.h“

#include “MainFrm.h“
#include “DigitRecDoc.h“
#include “DigitRecView.h“

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

/////////////////////////////////////////////////////////////////////////////
// CDigitRecApp

BEGIN_MESSAGE_MAP(CDigitRecApp CWinApp)
//{{AFX_MSG_MAP(CDigitRecApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDigitRecApp construction

CDigitRecApp::CDigitRecApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CDigitRecApp object

CDigitRecApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CDigitRecApp initialization

BOOL CDigitRecApp::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

// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

LoadStdProfileSettings();  // Load standard INI file options (including MRU)

// Register the application‘s document templates.  Document templates
//  serve as the connection between documents frame windows and views.

CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CDigitRecDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CDigitRecView));
AddDocTemplate(pDocTemplate);

// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);

// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;

// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->Up

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-03-29 23:14  chapter12\
     目录           0  2011-02-25 11:09  chapter12\Dataset\
     目录           0  2017-03-29 23:14  chapter12\Dataset\Test\
     文件        3126  2009-07-07 20:50  chapter12\Dataset\Test\0_Verdana.bmp
     文件        3126  2009-07-07 20:50  chapter12\Dataset\Test\1_Verdana.bmp
     文件        3126  2009-07-07 20:50  chapter12\Dataset\Test\2_Verdana.bmp
     文件        3126  2009-07-07 20:50  chapter12\Dataset\Test\3_Verdana.bmp
     文件        3126  2009-07-07 20:50  chapter12\Dataset\Test\4_Verdana.bmp
     文件        3126  2009-07-07 20:50  chapter12\Dataset\Test\5_Verdana.bmp
     文件        3126  2009-07-07 20:50  chapter12\Dataset\Test\6_Verdana.bmp
     文件        3126  2009-07-07 20:50  chapter12\Dataset\Test\7_Verdana.bmp
     文件        3126  2009-07-07 20:50  chapter12\Dataset\Test\8_Verdana.bmp
     文件        3126  2009-07-07 20:50  chapter12\Dataset\Test\9_Verdana.bmp
     目录           0  2011-02-25 11:09  chapter12\Dataset\Train\
     目录           0  2017-03-29 23:14  chapter12\Dataset\Train\0\
     文件        3126  2009-07-07 20:43  chapter12\Dataset\Train\0\0_Arial.bmp
     文件        3126  2009-07-07 20:43  chapter12\Dataset\Train\0\0_Courier.bmp
     文件        3126  2009-07-07 20:43  chapter12\Dataset\Train\0\0_SongTi.bmp
     文件        3126  2009-07-07 20:43  chapter12\Dataset\Train\0\0_Times.bmp
     目录           0  2017-03-29 23:14  chapter12\Dataset\Train\1\
     文件        3126  2009-07-07 20:43  chapter12\Dataset\Train\1\1_Arial.bmp
     文件        3126  2009-07-07 20:43  chapter12\Dataset\Train\1\1_Courier.bmp
     文件        3126  2009-07-07 20:43  chapter12\Dataset\Train\1\1_SongTi.bmp
     文件        3126  2009-07-07 20:43  chapter12\Dataset\Train\1\1_Times.bmp
     目录           0  2017-03-29 23:14  chapter12\Dataset\Train\2\
     文件        3126  2009-07-07 20:43  chapter12\Dataset\Train\2\2_Arial.bmp
     文件        3126  2009-07-07 20:43  chapter12\Dataset\Train\2\2_Courier.bmp
     文件        3126  2009-07-07 20:43  chapter12\Dataset\Train\2\2_SongTi.bmp
     文件        3126  2009-07-07 20:43  chapter12\Dataset\Train\2\2_Times.bmp
     目录           0  2017-03-29 23:14  chapter12\Dataset\Train\3\
     文件        3126  2009-07-07 20:43  chapter12\Dataset\Train\3\3_Arial.bmp
............此处省略150个文件信息

评论

共有 条评论