资源简介
基于opencv写的人头统计程序,可以直接运行!
代码片段和文件信息
// count.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “count.h“
#include “countDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCountApp
BEGIN_MESSAGE_MAP(CCountApp CWinApp)
//{{AFX_MSG_MAP(CCountApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CCountApp construction
CCountApp::CCountApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CCountApp object
CCountApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CCountApp initialization
BOOL CCountApp::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
CCountDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2506 2008-07-03 03:11 MFC版峰值计数1.0(加方向检测)\count.clw
文件 2049 2008-02-13 12:47 MFC版峰值计数1.0(加方向检测)\count.cpp
文件 4388 2008-06-15 12:30 MFC版峰值计数1.0(加方向检测)\count.dsp
文件 535 2008-02-13 12:47 MFC版峰值计数1.0(加方向检测)\count.dsw
文件 1313 2008-02-13 12:47 MFC版峰值计数1.0(加方向检测)\count.h
文件 140288 2008-07-03 03:19 MFC版峰值计数1.0(加方向检测)\count.ncb
文件 7347 2008-06-29 18:06 MFC版峰值计数1.0(加方向检测)\count.rc
文件 4231 2008-06-30 09:23 MFC版峰值计数1.0(加方向检测)\count.plg
文件 374784 2008-07-03 03:19 MFC版峰值计数1.0(加方向检测)\count.opt
文件 23134 2008-06-30 09:23 MFC版峰值计数1.0(加方向检测)\countDlg.cpp
文件 37968 2008-06-29 18:06 MFC版峰值计数1.0(加方向检测)\count.aps
文件 3561 2008-02-13 12:47 MFC版峰值计数1.0(加方向检测)\ReadMe.txt
文件 3050 2008-06-29 22:41 MFC版峰值计数1.0(加方向检测)\countDlg.h
文件 1741 2008-06-29 17:17 MFC版峰值计数1.0(加方向检测)\resource.h
文件 207 2008-02-13 12:47 MFC版峰值计数1.0(加方向检测)\StdAfx.cpp
文件 1054 2008-02-13 12:47 MFC版峰值计数1.0(加方向检测)\StdAfx.h
文件 16384 2008-02-13 20:10 MFC版峰值计数1.0(加方向检测)\~VC119.tmp
文件 0 2008-02-13 20:10 MFC版峰值计数1.0(加方向检测)\~VC11A.tmp
文件 1078 2008-02-13 12:47 MFC版峰值计数1.0(加方向检测)\res\count.ico
文件 397 2008-02-13 12:47 MFC版峰值计数1.0(加方向检测)\res\count.rc2
文件 3523584 2008-06-30 09:23 MFC版峰值计数1.0(加方向检测)\Debug\count.bsc
文件 2129997 2008-06-30 09:23 MFC版峰值计数1.0(加方向检测)\Debug\count.exe
文件 6838444 2008-06-30 09:23 MFC版峰值计数1.0(加方向检测)\Debug\count.pch
文件 3556352 2008-06-30 09:23 MFC版峰值计数1.0(加方向检测)\Debug\count.pdb
文件 9756 2008-06-30 09:23 MFC版峰值计数1.0(加方向检测)\Debug\count.res
文件 0 2008-06-30 09:23 MFC版峰值计数1.0(加方向检测)\Debug\count.sbr
文件 0 2008-06-30 09:23 MFC版峰值计数1.0(加方向检测)\Debug\countDlg.sbr
文件 0 2008-06-30 09:23 MFC版峰值计数1.0(加方向检测)\Debug\rgbgmfgd.sbr
文件 105955 2008-06-30 09:23 MFC版峰值计数1.0(加方向检测)\Debug\StdAfx.obj
文件 1361508 2008-06-30 09:23 MFC版峰值计数1.0(加方向检测)\Debug\StdAfx.sbr
............此处省略23个文件信息
评论
共有 条评论