资源简介
搜集的多个数字识别代码,有车牌识别源码,还有英文字母的识别。模式识别基础代码。

代码片段和文件信息
// ChildFrm.cpp : implementation of the CChildframe class
//
#include “stdafx.h“
#include “PlateReco.h“
#include “ChildFrm.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CChildframe
IMPLEMENT_DYNCREATE(CChildframe CMDIChildWnd)
BEGIN_MESSAGE_MAP(CChildframe CMDIChildWnd)
//{{AFX_MSG_MAP(CChildframe)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CChildframe construction/destruction
CChildframe::CChildframe()
{
// TODO: add member initialization code here
}
CChildframe::~CChildframe()
{
}
BOOL CChildframe::OnCreateClient( LPCREATESTRUCT /*lpcs*/
CCreateContext* pContext)
{
return m_wndSplitter.Create( this
2 2 // TODO: adjust the number of rows columns
CSize( 10 10 ) // TODO: adjust the minimum pane size
pContext );
}
BOOL CChildframe::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
if( !CMDIChildWnd::PreCreateWindow(cs) )
return FALSE;
cs.style = WS_CHILD | WS_VISIBLE | WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU
| FWS_ADDTOtitle | WS_THICKframe | WS_MINIMIZEBOX | WS_MAXIMIZEBOX;
return TRUE;
}
void CChildframe::Activateframe(int nCmdShow)
{
// TODO: Modify this function to change how the frame is activated.
nCmdShow = SW_SHOWMAXIMIZED;
CMDIChildWnd::Activateframe(nCmdShow);
}
/////////////////////////////////////////////////////////////////////////////
// CChildframe diagnostics
#ifdef _DEBUG
void CChildframe::AssertValid() const
{
CMDIChildWnd::AssertValid();
}
void CChildframe::Dump(CDumpContext& dc) const
{
CMDIChildWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CChildframe message handlers
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 261462 2002-03-19 10:34 数字识别\功能很全的车牌识别系统源码\PlateReco\car.bmp
文件 2163 2005-05-03 01:19 数字识别\功能很全的车牌识别系统源码\PlateReco\ChildFrm.cpp
文件 1571 2005-05-03 01:19 数字识别\功能很全的车牌识别系统源码\PlateReco\ChildFrm.h
文件 266361 2010-11-08 10:19 数字识别\功能很全的车牌识别系统源码\PlateReco\Debug\PlateReco.exe
文件 18160 2001-07-13 17:28 数字识别\功能很全的车牌识别系统源码\PlateReco\Dibapi.cpp
文件 1294 2001-07-13 17:27 数字识别\功能很全的车牌识别系统源码\PlateReco\Dibapi.h
文件 1024 2005-05-03 03:27 数字识别\功能很全的车牌识别系统源码\PlateReco\DlgBinary.cpp
文件 1252 2005-05-03 03:27 数字识别\功能很全的车牌识别系统源码\PlateReco\DlgBinary.h
文件 1833 2005-05-03 03:17 数字识别\功能很全的车牌识别系统源码\PlateReco\DlgRecoResult.cpp
文件 1238 2005-05-03 03:17 数字识别\功能很全的车牌识别系统源码\PlateReco\DlgRecoResult.h
文件 268059 2005-05-03 01:39 数字识别\功能很全的车牌识别系统源码\PlateReco\GlobalFunction.cpp
文件 7132 2001-08-18 20:07 数字识别\功能很全的车牌识别系统源码\PlateReco\GlobalFunction.h
文件 2666 2005-05-03 01:19 数字识别\功能很全的车牌识别系统源码\PlateReco\MainFrm.cpp
文件 1552 2005-05-03 01:19 数字识别\功能很全的车牌识别系统源码\PlateReco\MainFrm.h
文件 49864 2005-05-03 04:16 数字识别\功能很全的车牌识别系统源码\PlateReco\PlateReco.aps
文件 4477 2005-05-03 04:16 数字识别\功能很全的车牌识别系统源码\PlateReco\PlateReco.clw
文件 5408 2005-05-03 01:36 数字识别\功能很全的车牌识别系统源码\PlateReco\PlateReco.cpp
文件 5149 2005-05-03 03:21 数字识别\功能很全的车牌识别系统源码\PlateReco\PlateReco.dsp
文件 543 2005-05-03 01:15 数字识别\功能很全的车牌识别系统源码\PlateReco\PlateReco.dsw
文件 1389 2005-05-03 01:20 数字识别\功能很全的车牌识别系统源码\PlateReco\PlateReco.h
文件 7412 2005-06-17 18:08 数字识别\功能很全的车牌识别系统源码\PlateReco\PlateReco.plg
文件 16276 2005-05-03 04:16 数字识别\功能很全的车牌识别系统源码\PlateReco\PlateReco.rc
文件 8350 2005-05-03 01:21 数字识别\功能很全的车牌识别系统源码\PlateReco\PlateRecoDoc.cpp
文件 1928 2005-05-03 01:21 数字识别\功能很全的车牌识别系统源码\PlateReco\PlateRecoDoc.h
文件 27622 2005-05-03 04:13 数字识别\功能很全的车牌识别系统源码\PlateReco\PlateRecoView.cpp
文件 2458 2005-05-03 03:36 数字识别\功能很全的车牌识别系统源码\PlateReco\PlateRecoView.h
文件 4847 2005-05-03 01:15 数字识别\功能很全的车牌识别系统源码\PlateReco\ReadMe.txt
文件 1078 2005-05-03 01:15 数字识别\功能很全的车牌识别系统源码\PlateReco\res\PlateReco.ico
文件 401 2005-05-03 01:15 数字识别\功能很全的车牌识别系统源码\PlateReco\res\PlateReco.rc2
文件 1078 2005-05-03 01:15 数字识别\功能很全的车牌识别系统源码\PlateReco\res\PlateRecoDoc.ico
............此处省略384个文件信息
相关资源
- 基于OpenCV的数字识别468815
- Halcon车牌识别
- 百度API车牌识别DEMO.rar
- 手写数字识别-模板匹配法
- 易泊车牌识别停车计费系统介绍
- 基于OPENCV的车牌识别系统设计
- GUI数字识别系统代码
- 夜间车牌识别
- 复杂背景下车牌识别系统GUI.zip
- 车牌识别系统的功能评测子库3
- 车牌识别中省份汉字的训练集
- 基于opencv的车牌识别源码
- 基于Tensorflow多层神经网络的MNIST手写
- 车牌识别2400个正样本
- 30款圆形英文字体合集打包
- 车牌识别系统原创+详细注释版+少函数
- 车牌识别字符训练样本
- HOG+SVM实现数字识别
- stm32+ov7670数字识别
- 基于LabVIEW的车牌识别系统直接运行
- 车牌识别算法的研究和实现
- 基于BP神经网络的车牌识别技术
- 车牌识别及语音播报
- 大华车牌识别DEMO
- 卷积神经网络实现手写数字识别
- MNIST数据集 txt版
- 汽车车牌识别系统的设计及实现
- 英文字母识别
- 3种模板匹配法实现的手写数字识别
- 基于CNN的手写数字识别
评论
共有 条评论