资源简介
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.em
文件 980 2013-04-07 18:09 第13章\CarShape_Plate_Identify\Debug\CarShape_Plate_Identify.exe.em
文件 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个文件信息
- 上一篇:基于kotlin实现的简单账户记录APP
- 下一篇:乡村旅游网站源码
相关资源
- CMake+opencv3.4编译时 Download: opencv_ffmp
- 毕业设计基于Opencv的车牌识别系统
- OpenCV3计算机视觉
- OpenCV4.2.0已编译好的32位库
- 张正友相机标定Opencv实现
- Qt_Opencv_Camera.rar
- opencv 运动物体跟踪检测
- 两篇基于OpenCV的硕士论文
- Opencv3.0 手写数字数别完整版本
- OpenTLD-master VS213 OpenCV 3.0版本源码
- calib_point
- VTK-6.3.0.tar.gz
- 基于Arcsoft2.0 linux版+opencv
- hog+svm性别识别源码
- Qt5.5.1读取大恒相机
- Opencv常用前景提取算法
- 基于OpenCV的车牌识别系统
- 贪心算法,opencv,主动轮廓模型,s
- Computer Vision with OpenCV 3 and Qt5 pdf + co
- opencv SVM训练检测车牌
- OpenCV_1.0.exe
- 车牌识别-opencv
- AdaBoost人脸检测程序
- 挥拳动作OpenCV识别
- SIFT算法实现及代码详解239444
- 基于opencv与opengl实现增强现实
- 中国象棋源码+论文人工智能,搜索算
- 利用opencv实现疲劳检测
- QT+Opencv2+VS2012 使用多线程显示网络摄
- opencv3.4.1 编译库,可在Qt直接使用
评论
共有 条评论