• 大小: 12.55MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-28
  • 语言: 其他
  • 标签: VC++  OpenCV  车牌识别  

资源简介

VC OpenCV车牌识别源代码,需要安装opencv

资源截图

代码片段和文件信息


// CarShape_Plate_Identify.cpp : 定义应用程序的类行为。
//

#include “stdafx.h“
#include “afxwinappex.h“
#include “afxdialogex.h“
#include “CarShape_Plate_Identify.h“
#include “MainFrm.h“

#include “CarShape_Plate_IdentifyDoc.h“
#include “CarShape_Plate_IdentifyView.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CCarShape_Plate_IdentifyApp

BEGIN_MESSAGE_MAP(CCarShape_Plate_IdentifyApp CWinAppEx)
ON_COMMAND(ID_APP_ABOUT &CCarShape_Plate_IdentifyApp::OnAppAbout)
// 基于文件的标准文档命令
ON_COMMAND(ID_FILE_NEW &CWinAppEx::OnFileNew)
ON_COMMAND(ID_FILE_OPEN &CWinAppEx::OnFileOpen)
END_MESSAGE_MAP()


// CCarShape_Plate_IdentifyApp 构造

CCarShape_Plate_IdentifyApp::CCarShape_Plate_IdentifyApp()
{
m_bHiColorIcons = TRUE;

// 支持重新启动管理器
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_ALL_ASPECTS;
#ifdef _MANAGED
// 如果应用程序是利用公共语言运行时支持(/clr)构建的,则:
//     1) 必须有此附加设置,“重新启动管理器”支持才能正常工作。
//     2) 在您的项目中,您必须按照生成顺序向 System.Windows.Forms 添加引用。
System::Windows::Forms::Application::SetUnhandledExceptionMode(System::Windows::Forms::UnhandledExceptionMode::ThrowException);
#endif

// TODO: 将以下应用程序 ID 字符串替换为唯一的 ID 字符串;建议的字符串格式
//为 CompanyName.ProductName.SubProduct.VersionInformation
SetAppID(_T(“CarShape_Plate_Identify.AppID.NoVersion“));

// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}

// 唯一的一个 CCarShape_Plate_IdentifyApp 对象

CCarShape_Plate_IdentifyApp theApp;


// CCarShape_Plate_IdentifyApp 初始化

BOOL CCarShape_Plate_IdentifyApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);

CWinAppEx::InitInstance();


// 初始化 OLE 库
if (!AfxOleInit())
{
AfxMessageBox(IDP_OLE_INIT_FAILED);
return FALSE;
}

AfxEnableControlContainer();

EnableTaskbarInteraction(FALSE);

// 使用 RichEdit 控件需要  AfxInitRichEdit2()
// AfxInitRichEdit2();

// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T(“应用程序向导生成的本地应用程序“));
LoadStdProfileSettings(4);  // 加载标准 INI 文件选项(包括 MRU)


InitContextMenuManager();

InitKeyboardManager();

InitTooltipManager();
CMFCToolTipInfo ttParams;
ttParams.m_bVislManagerTheme = TRUE;
theApp.GetTooltipManager()->SetTooltipParams(AFX_TOOLTIP_TYPE_ALL
RUNTIME_CLASS(CMFCToolTipCtrl) &ttParams);

// 注册应用程序的文档模板。文档模板
// 将用作文档、框架窗口和视图之间的连接
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CCarShape_Plate_IdentifyDoc)
RUNTIME_CLASS(CMainframe)       // 主 SDI 框架窗口
RUNTIME_CLASS(CCarShape_Plate_IdentifyView));
if (!pDocTemplate)
return FALSE;
AddDocTemplate(pDocTemplate);


// 分析标准 shell 命令、DDE、

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     195616  2013-04-07 18:05  第13章\CarShape_Plate_Identify\CarShape_Plate_Identify.aps

     文件       5354  2013-04-07 18:05  第13章\CarShape_Plate_Identify\CarShape_Plate_Identify.cpp

     文件        769  2013-04-07 18:05  第13章\CarShape_Plate_Identify\CarShape_Plate_Identify.h

     文件      33742  2013-04-07 18:05  第13章\CarShape_Plate_Identify\CarShape_Plate_Identify.rc

     文件       9533  2013-04-17 18:25  第13章\CarShape_Plate_Identify\CarShape_Plate_Identify.vcxproj

     文件       6735  2013-04-07 18:05  第13章\CarShape_Plate_Identify\CarShape_Plate_Identify.vcxproj.filters

     文件        143  2013-04-07 18:05  第13章\CarShape_Plate_Identify\CarShape_Plate_Identify.vcxproj.user

     文件      32518  2013-07-02 16:22  第13章\CarShape_Plate_Identify\CarShape_Plate_IdentifyDoc.cpp

     文件       2351  2013-07-01 15:07  第13章\CarShape_Plate_Identify\CarShape_Plate_IdentifyDoc.h

     文件       2428  2013-04-07 18:05  第13章\CarShape_Plate_Identify\CarShape_Plate_IdentifyView.cpp

     文件       1130  2013-04-07 18:05  第13章\CarShape_Plate_Identify\CarShape_Plate_IdentifyView.h

     文件       4802  2013-04-19 19:04  第13章\CarShape_Plate_Identify\Classification.cpp

     文件        277  2013-04-07 18:05  第13章\CarShape_Plate_Identify\Classification.h

     文件       9045  2013-04-07 18:05  第13章\CarShape_Plate_Identify\ClassView.cpp

     文件       1275  2013-04-07 18:05  第13章\CarShape_Plate_Identify\ClassView.h

     文件     152078  2013-04-07 18:05  第13章\CarShape_Plate_Identify\contour\0.bmp

     文件     293578  2013-04-07 18:05  第13章\CarShape_Plate_Identify\contour\1.bmp

     文件     207646  2013-04-07 18:05  第13章\CarShape_Plate_Identify\contour\2.bmp

     文件     477638  2013-04-07 18:05  第13章\CarShape_Plate_Identify\contour\3.bmp

     文件       7183  2013-04-07 18:05  第13章\CarShape_Plate_Identify\CvvImage.cpp

     文件       1627  2013-04-07 18:05  第13章\CarShape_Plate_Identify\CvvImage.h

     文件        915  2013-04-07 18:05  第13章\CarShape_Plate_Identify\Debug\CarShape_Plate_Identify.exe.embed.manifest

     文件        980  2013-04-07 18:09  第13章\CarShape_Plate_Identify\Debug\CarShape_Plate_Identify.exe.embed.manifest.res

     文件        640  2013-04-07 18:58  第13章\CarShape_Plate_Identify\Debug\CarShape_Plate_Identify.exe.intermediate.manifest

     文件         97  2013-07-02 16:51  第13章\CarShape_Plate_Identify\Debug\CarShape_Plate_Identify.lastbuildstate

     文件       1176  2013-07-02 16:51  第13章\CarShape_Plate_Identify\Debug\CarShape_Plate_Identify.log

     文件     159877  2013-07-01 15:07  第13章\CarShape_Plate_Identify\Debug\CarShape_Plate_Identify.obj

     文件   33619968  2013-06-14 20:06  第13章\CarShape_Plate_Identify\Debug\CarShape_Plate_Identify.pch

     文件     141768  2013-06-14 20:06  第13章\CarShape_Plate_Identify\Debug\CarShape_Plate_Identify.res

     文件     279351  2013-07-02 16:22  第13章\CarShape_Plate_Identify\Debug\CarShape_Plate_IdentifyDoc.obj

............此处省略103个文件信息

评论

共有 条评论