• 大小: 822KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-12
  • 语言: C/C++
  • 标签:

资源简介

一款实用的车牌识别源码 车牌识别组成模块: 1.车牌检测:检测输入照片或视频中是否存在车牌。 2.车牌识别:检测到的车牌进行字符分割及识别并输出识别结果。 3.图像处理:检测到的车牌图像进行修复、旋转等以提高识别正确率。 4.开发例子:提供完善的 C++语言源码。

资源截图

代码片段和文件信息

// ChildFrm.cpp : implementation of the CChildframe class
//

#include “stdafx.h“
#include “PlateLocate.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::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
//  the CREATESTRUCT cs

if( !CMDIChildWnd::PreCreateWindow(cs) )
return FALSE;

return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CChildframe diagnostics

#ifdef _DEBUG
void CChildframe::AssertValid() const
{
CMDIChildWnd::AssertValid();
}

void CChildframe::Dump(CDumpContext& dc) const
{
CMDIChildWnd::Dump(dc);
}

#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CChildframe message handlers

void CChildframe::Activateframe(int nCmdShow) 
{
// TODO: Add your specialized code here and/or call the base class
nCmdShow = SW_SHOWMAXIMIZED;
CMDIChildWnd::Activateframe(nCmdShow);
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2009-12-06 20:29  program\
     文件      230454  2005-03-17 13:41  program\example04.bmp
     文件      230454  2005-03-25 19:22  program\example27.bmp
     目录           0  2012-03-04 20:15  program\Plate\
     文件      155723  2005-05-11 09:12  program\plate.exe
     文件        1735  2005-04-24 21:29  program\Plate\ChildFrm.cpp
     文件        1456  2005-04-24 21:26  program\Plate\ChildFrm.h
     文件       65041  2001-01-06 22:01  program\Plate\ColorTable.h
     文件       29208  2005-02-24 09:16  program\Plate\DIBAPI.CPP
     文件        1875  2005-02-24 09:16  program\Plate\DIBAPI.H
     文件        5019  2005-04-28 16:01  program\Plate\DlgIntensity.cpp
     文件        1716  2005-04-28 15:40  program\Plate\DlgIntensity.h
     文件        2528  2005-04-24 18:56  program\Plate\MainFrm.cpp
     文件        1542  2005-04-24 18:56  program\Plate\MainFrm.h
     文件       46860  2005-05-09 12:42  program\Plate\PlateLocate.aps
     文件        3649  2005-05-11 10:05  program\Plate\PlateLocate.clw
     文件        4581  2005-04-24 21:50  program\Plate\PlateLocate.cpp
     文件        5260  2005-05-02 10:08  program\Plate\PlateLocate.dsp
     文件         547  2005-04-24 18:59  program\Plate\PlateLocate.dsw
     文件        1411  2005-04-24 18:56  program\Plate\PlateLocate.h
     文件       99328  2005-05-11 10:05  program\Plate\PlateLocate.ncb
     文件       88064  2005-05-11 10:05  program\Plate\PlateLocate.opt
     文件        1817  2005-05-11 09:12  program\Plate\PlateLocate.plg
     文件       13839  2005-05-09 12:42  program\Plate\PlateLocate.rc
     文件        2560  2012-03-04 20:15  program\Plate\PlateLocate.suo
     文件        8026  2005-04-24 23:26  program\Plate\PlateLocateDoc.cpp
     文件        1978  2005-04-24 21:04  program\Plate\PlateLocateDoc.h
     文件       27989  2005-05-09 10:11  program\Plate\PlateLocateMethod.cpp
     文件        1104  2005-05-09 09:38  program\Plate\PlateLocateMethod.h
     文件       21110  2005-05-11 09:12  program\Plate\PlateLocateView.cpp
     文件        2534  2005-05-09 12:32  program\Plate\PlateLocateView.h
............此处省略79个文件信息

评论

共有 条评论

相关资源