资源简介
图像识别代码,可以识别数字和字母,原理简单,对于图像清晰的图片识别率很高,用于识别验证码和交通车牌

代码片段和文件信息
//基于BP网络的含噪声数字的识别(noised digital number recognition based on BPnet)
//Developed by 赵辉(H.ZHAO)
//Shandong UniversityJInanChinaPRC
//finished 2004-03-26
// BPnet.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “BPnet.h“
#include “MainFrm.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CBPnetApp
BEGIN_MESSAGE_MAP(CBPnetApp CWinApp)
//{{AFX_MSG_MAP(CBPnetApp)
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
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CBPnetApp construction
CBPnetApp::CBPnetApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CBPnetApp object
CBPnetApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CBPnetApp initialization
BOOL CBPnetApp::InitInstance()
{
// 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“));
// To create the main window this code creates a new frame window
// object and then sets it as the application‘s main window object.
CMainframe* pframe = new CMainframe;
m_pMainWnd = pframe;
// create and load the frame with its resources
pframe->Loadframe(IDR_MAINframe
WS_OVERLAPPEDWINDOW | FWS_ADDTOtitle NULL
NULL);
// The one and only window has been initialized so show and update it.
pframe->ShowWindow(SW_SHOWMAXIMIZED);
pframe->UpdateWindow();
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CBPnetApp message handlers
/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About
class CAboutDlg : public CDialog
{
public:
CAboutDlg();
// Dialog Data
//{{AFX_DATA(CAboutDlg)
enum { IDD = IDD_ABOUTBOX };
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CAboutDlg)
protected:
virtual void DoDataExchange(CD
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 11024 2004-03-30 04:02 数字,字母都可以识别\bp-char\BPnet.rc
文件 2752 2004-03-30 03:53 数字,字母都可以识别\bp-char\BPnet.clw
文件 3814 2004-03-27 14:23 数字,字母都可以识别\bp-char\BPnet.cpp
文件 4425 2004-03-29 11:12 数字,字母都可以识别\bp-char\BPnet.dsp
文件 533 2004-03-21 11:21 数字,字母都可以识别\bp-char\BPnet.dsw
文件 1356 2004-03-21 11:21 数字,字母都可以识别\bp-char\BPnet.h
文件 3706 2004-03-30 04:19 数字,字母都可以识别\bp-char\pred.h
文件 3500 2004-03-27 14:23 数字,字母都可以识别\bp-char\MainFrm.cpp
文件 1744 2004-03-21 11:21 数字,字母都可以识别\bp-char\MainFrm.h
文件 3559 2004-03-26 00:59 数字,字母都可以识别\bp-char\matrix_op.h
文件 3848 2004-03-21 11:21 数字,字母都可以识别\bp-char\ReadMe.txt
文件 1154 2004-03-30 04:02 数字,字母都可以识别\bp-char\Resource.h
文件 207 2004-03-21 11:21 数字,字母都可以识别\bp-char\StdAfx.cpp
文件 999 2004-03-21 11:21 数字,字母都可以识别\bp-char\StdAfx.h
文件 2716 2004-03-30 03:53 数字,字母都可以识别\bp-char\ChildView.h
文件 42880 2004-03-30 04:02 数字,字母都可以识别\bp-char\BPnet.aps
文件 24277 2004-03-30 04:09 数字,字母都可以识别\bp-char\ChildView.cpp
文件 50176 2008-01-25 17:27 数字,字母都可以识别\bp-char\BPnet.ncb
文件 1643 2008-01-25 17:24 数字,字母都可以识别\bp-char\BPnet.plg
文件 48640 2008-01-25 17:27 数字,字母都可以识别\bp-char\BPnet.opt
文件 1078 2004-03-21 11:21 数字,字母都可以识别\bp-char\res\BPnet.ico
文件 397 2004-03-21 11:21 数字,字母都可以识别\bp-char\res\BPnet.rc2
文件 718 2004-03-21 11:21 数字,字母都可以识别\bp-char\res\Toolbar.bmp
目录 0 2008-01-25 17:35 数字,字母都可以识别\bp-char\res
目录 0 2008-01-25 17:35 数字,字母都可以识别\bp-char
目录 0 2010-05-05 09:23 数字,字母都可以识别
----------- --------- ---------- ----- ----
215146 26
- 上一篇:PB AVI 调用DEMO
- 下一篇:用西门子S7-200编写的恒压供水程序
相关资源
- 图像二值化
- 六路智能抢答器VHDL语言
- [免费]图像识别c 源码
- 推箱子及人工智能寻路C 源代码
- 使用opencv去掉二值化图像中黑色面积
- 智能寻迹机器人源程序及pcb图
- 北航人工智能原理课大作业源代码,
- ISO7816 协议标准
- 基于51单片机的智能温控器
- 多线程实例:桌面智能弹球小游戏
- 基于电能信息终端的智能家居系统
- 国网《500千伏及以上变电站 远程智能
- labview智能电梯(6层电梯.vi)
- 易语言:电脑智能屏幕锁
- 一种智能大功率直流电源的设计与实
- 智能路由器怎么了?为何退潮
- 智能光网络ASON的关键技术及发展策略
- 消防指示灯智能监控系统三端口网关
- 在各城市的窄带物联网中传感器起到
- 盘点主流智能家居硬件常见的六大问
- 基于PIC的TCP/IP网络协议和zigbee无线传
- 传感器应用领域的扩大发展强劲
- oppo智能手机adb驱动程序
- 串行通信在多路温度智能仪表中的应
- 基于进化算法的岩体参数智能识别
- 智能卡PCSC读卡器指令发送工具
- 采用NFC技术的无线遥控器系统电路设
- 嵌入式智能平台为城市一卡通打造智
- 研祥智能股份的\\EVOC\\ POS结构单板电
- 研祥“EVOC”嵌入式智能平台在
评论
共有 条评论