• 大小: 8.38MB
    文件类型: .zip
    金币: 2
    下载: 0 次
    发布日期: 2024-02-12
  • 语言: C/C++
  • 标签:

资源简介

里面包含了整个开发过程的思路和备注文档,非常详细,每一步怎么做都写的很详细,程序代码也非常规范,代码注释也很详细。功能实现了车牌的灰度化,二值化,提取顶点,定位车牌位置,提取车牌,保存提取出来的车牌等功能

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “recognize.h“
#include “recognizeDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CRecognizeApp

BEGIN_MESSAGE_MAP(CRecognizeApp CWinApp)
//{{AFX_MSG_MAP(CRecognizeApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CRecognizeApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CRecognizeApp object

CRecognizeApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CRecognizeApp initialization

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

CRecognizeDlg 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  2015-01-03 10:19  c++mfc车牌自动识别定位\
     目录           0  2015-01-03 10:19  c++mfc车牌自动识别定位\recognize\
     目录           0  2015-01-03 10:19  c++mfc车牌自动识别定位\recognize\Debug\
     文件     5350400  2014-12-30 16:04  c++mfc车牌自动识别定位\recognize\Debug\recognize.bsc
     文件      135255  2014-12-30 16:11  c++mfc车牌自动识别定位\recognize\Debug\recognize.exe
     文件      354556  2014-12-30 16:11  c++mfc车牌自动识别定位\recognize\Debug\recognize.ilk
     文件       13299  2014-12-29 11:38  c++mfc车牌自动识别定位\recognize\Debug\recognize.obj
     文件      418816  2014-12-30 16:11  c++mfc车牌自动识别定位\recognize\Debug\recognize.pdb
     文件        3016  2014-12-30 16:11  c++mfc车牌自动识别定位\recognize\Debug\recognize.res
     文件           0  2014-12-29 11:38  c++mfc车牌自动识别定位\recognize\Debug\recognize.sbr
     文件       73949  2014-12-30 15:58  c++mfc车牌自动识别定位\recognize\Debug\recognizeDlg.obj
     文件           0  2014-12-30 15:58  c++mfc车牌自动识别定位\recognize\Debug\recognizeDlg.sbr
     文件      105804  2014-12-29 10:43  c++mfc车牌自动识别定位\recognize\Debug\StdAfx.obj
     文件     1375022  2014-12-29 10:43  c++mfc车牌自动识别定位\recognize\Debug\StdAfx.sbr
     文件      214016  2014-12-31 09:46  c++mfc车牌自动识别定位\recognize\Debug\vc60.idb
     文件      364544  2014-12-30 15:57  c++mfc车牌自动识别定位\recognize\Debug\vc60.pdb
     文件        3633  2014-12-15 19:15  c++mfc车牌自动识别定位\recognize\ReadMe.txt
     文件         299  2014-12-30 16:15  c++mfc车牌自动识别定位\recognize\READMEHAHA.txt
     文件       36468  2014-12-30 16:11  c++mfc车牌自动识别定位\recognize\recognize.aps
     文件        1572  2014-12-31 09:46  c++mfc车牌自动识别定位\recognize\recognize.clw
     文件        2105  2014-12-15 19:15  c++mfc车牌自动识别定位\recognize\recognize.cpp
     文件        4214  2014-12-19 19:00  c++mfc车牌自动识别定位\recognize\recognize.dsp
     文件         526  2014-12-15 19:15  c++mfc车牌自动识别定位\recognize\recognize.dsw
     文件        1357  2014-12-15 19:15  c++mfc车牌自动识别定位\recognize\recognize.h
     文件       58368  2014-12-31 10:27  c++mfc车牌自动识别定位\recognize\recognize.ncb
     文件       49664  2014-12-31 10:27  c++mfc车牌自动识别定位\recognize\recognize.opt
     文件         252  2014-12-31 09:46  c++mfc车牌自动识别定位\recognize\recognize.plg
     文件        5985  2014-12-30 16:11  c++mfc车牌自动识别定位\recognize\recognize.rc
     文件       36818  2014-12-30 15:57  c++mfc车牌自动识别定位\recognize\recognizeDlg.cpp
     文件        1939  2014-12-29 11:27  c++mfc车牌自动识别定位\recognize\recognizeDlg.h
     目录           0  2015-01-03 10:19  c++mfc车牌自动识别定位\recognize\res\
............此处省略6个文件信息

评论

共有 条评论

相关资源