资源简介

vc环境下,使用c++以及opencv开发的车型识别系统,适合学习参考,里面有图片以及说明,源码有注释。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “CarShapeIdentify.h“
#include “MainFrm.h“

#include “CarShapeIdentifyDoc.h“
#include “CarShapeIdentifyView.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CCarShapeIdentifyApp

BEGIN_MESSAGE_MAP(CCarShapeIdentifyApp CWinApp)
ON_COMMAND(ID_APP_ABOUT &CCarShapeIdentifyApp::OnAppAbout)
// 基于文件的标准文档命令
ON_COMMAND(ID_FILE_NEW &CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN &CWinApp::OnFileOpen)
// 标准打印设置命令
ON_COMMAND(ID_FILE_PRINT_SETUP &CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()


// CCarShapeIdentifyApp 构造

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


// 唯一的一个 CCarShapeIdentifyApp 对象

CCarShapeIdentifyApp theApp;


// CCarShapeIdentifyApp 初始化

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

CWinApp::InitInstance();

// 初始化 OLE 库
if (!AfxOleInit())
{
AfxMessageBox(IDP_OLE_INIT_FAILED);
return FALSE;
}
AfxEnableControlContainer();
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T(“应用程序向导生成的本地应用程序“));
LoadStdProfileSettings(4);  // 加载标准 INI 文件选项(包括 MRU)
// 注册应用程序的文档模板。文档模板
// 将用作文档、框架窗口和视图之间的连接
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CCarShapeIdentifyDoc)
RUNTIME_CLASS(CMainframe)       // 主 SDI 框架窗口
RUNTIME_CLASS(CCarShapeIdentifyView));
if (!pDocTemplate)
return FALSE;
AddDocTemplate(pDocTemplate);



// 分析标准外壳命令、DDE、打开文件操作的命令行
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);


// 调度在命令行中指定的命令。如果
// 用 /RegServer、/Register、/Unregserver 或 /Unregister 启动应用程序,则返回 FALSE。
if (!ProcessShellCommand(cmdInfo))
return FALSE;

// 唯一的一个窗口已初始化,因此显示它并对其进行更新
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
// 仅当具有后缀时才调用 DragAcceptFiles
//  在 SDI 应用程序中,这应在 ProcessShellCommand 之后发生
return TRUE;
}



// 用于应用程序“关于”菜单项的 CAboutDlg 对话框

class CAboutDlg : public CDialog
{
public:
CAboutDlg();

// 对话框数据
enum { IDD = IDD_ABOUTBOX };

protected:
virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持

// 实现
protected:
DECLARE_MESSAGE_MAP()
};

CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
}

void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}

BEGIN_MESSAGE_MAP(CAboutDlg CDialog)
END_MESSAGE_MAP()

// 用于运行对话框的应用程序命令
void CCarShapeIdentifyApp::OnAppAbout()
{
CAboutDlg aboutDlg;
aboutDlg.DoModal();
}


// CCarShapeIdentifyApp 消息处理程序


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

     文件      15872  2011-12-24 14:51  第13章_车型识别系统\Images\Thumbs.db

     文件     921654  2011-11-16 15:45  第13章_车型识别系统\Images\前景图像.bmp

     文件     921654  2011-11-16 15:47  第13章_车型识别系统\Images\背景图像.bmp

     文件      54272  2012-07-03 11:20  第13章_车型识别系统\可执行文件\CarShapeIdentify.exe

     文件     152078  2011-11-18 16:25  第13章_车型识别系统\可执行文件\contour\0.bmp

     文件     293578  2011-11-18 16:04  第13章_车型识别系统\可执行文件\contour\1.bmp

     文件     207646  2011-11-14 08:56  第13章_车型识别系统\可执行文件\contour\2.bmp

     文件     477638  2011-11-14 10:02  第13章_车型识别系统\可执行文件\contour\3.bmp

     文件      19968  2012-02-14 19:42  第13章_车型识别系统\可执行文件\contour\Thumbs.db

     文件    2084352  2011-12-26 17:21  第13章_车型识别系统\可执行文件\cv210.dll

     文件    1069056  2011-12-26 17:23  第13章_车型识别系统\可执行文件\cvaux210.dll

     文件    2199040  2011-12-26 17:18  第13章_车型识别系统\可执行文件\cxcore210.dll

     文件     780800  2011-12-26 17:22  第13章_车型识别系统\可执行文件\highgui210.dll

     文件     406528  2011-12-26 17:22  第13章_车型识别系统\可执行文件\ml210.dll

     文件      68300  2012-07-02 08:30  第13章_车型识别系统\源码\CarShapeIdentify\CarShapeIdentify.aps

     文件       3425  2011-12-26 10:57  第13章_车型识别系统\源码\CarShapeIdentify\CarShapeIdentify.cpp

     文件        536  2011-12-26 10:57  第13章_车型识别系统\源码\CarShapeIdentify\CarShapeIdentify.h

     文件      11493  2012-07-02 08:30  第13章_车型识别系统\源码\CarShapeIdentify\CarShapeIdentify.rc

     文件       6296  2011-12-26 11:10  第13章_车型识别系统\源码\CarShapeIdentify\CarShapeIdentify.vcproj

     文件       8940  2012-07-02 08:31  第13章_车型识别系统\源码\CarShapeIdentify\CarShapeIdentifyDoc.cpp

     文件       1159  2011-12-26 11:09  第13章_车型识别系统\源码\CarShapeIdentify\CarShapeIdentifyDoc.h

     文件       2302  2011-12-26 11:00  第13章_车型识别系统\源码\CarShapeIdentify\CarShapeIdentifyView.cpp

     文件       1078  2011-12-26 10:57  第13章_车型识别系统\源码\CarShapeIdentify\CarShapeIdentifyView.h

     文件     152078  2011-11-18 16:25  第13章_车型识别系统\源码\CarShapeIdentify\contour\0.bmp

     文件     293578  2011-11-18 16:04  第13章_车型识别系统\源码\CarShapeIdentify\contour\1.bmp

     文件     207646  2011-11-14 08:56  第13章_车型识别系统\源码\CarShapeIdentify\contour\2.bmp

     文件     477638  2011-11-14 10:02  第13章_车型识别系统\源码\CarShapeIdentify\contour\3.bmp

     文件      19968  2012-02-14 19:42  第13章_车型识别系统\源码\CarShapeIdentify\contour\Thumbs.db

     文件       1865  2011-12-26 11:00  第13章_车型识别系统\源码\CarShapeIdentify\MainFrm.cpp

     文件        655  2011-12-26 10:57  第13章_车型识别系统\源码\CarShapeIdentify\MainFrm.h

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

评论

共有 条评论