資源簡介
對車流進行大致的統計,準確率可以達到90%以上。

代碼片段和文件信息
//?djp.cpp?:?Defines?the?class?behaviors?for?the?application.
//
#include?“stdafx.h“
#include?“djp.h“
#include?“djpDlg.h“
#ifdef?_DEBUG
#define?new?DEBUG_NEW
#undef?THIS_FILE
static?char?THIS_FILE[]?=?__FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
//?CDjpApp
BEGIN_MESSAGE_MAP(CDjpApp?CWinApp)
//{{AFX_MSG_MAP(CDjpApp)
//?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()
/////////////////////////////////////////////////////////////////////////////
//?CDjpApp?construction
CDjpApp::CDjpApp()
{
//?TODO:?add?construction?code?here
//?Place?all?significant?initialization?in?InitInstance
}
/////////////////////////////////////////////////////////////////////////////
//?The?one?and?only?CDjpApp?object
CDjpApp?theApp;
/////////////////////////////////////////////////////////////////////////////
//?CDjpApp?initialization
BOOL?CDjpApp::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
CDjpDlg?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??2013-06-23?10:47??djp\
?????目錄???????????0??2013-06-23?10:47??djp\Debug\
?????文件??????122933??2012-05-22?23:06??djp\Debug\djp.exe
?????文件???????15043??2012-05-22?23:06??djp\Debug\djp.obj
?????文件??????443392??2012-05-22?23:06??djp\Debug\djp.pdb
?????文件????????2940??2011-03-05?18:29??djp\Debug\djp.res
?????文件???????64154??2012-05-22?23:06??djp\Debug\djpDlg.obj
?????文件???????47859??2012-05-22?23:06??djp\Debug\mscomm.obj
?????文件??????106003??2012-05-22?23:06??djp\Debug\StdAfx.obj
?????文件??????397312??2012-05-22?23:06??djp\Debug\vc60.pdb
?????文件???????21248??2011-06-23?21:16??djp\djp.aps
?????文件????????1318??2012-05-22?23:15??djp\djp.clw
?????文件????????2021??2011-03-04?18:29??djp\djp.cpp
?????文件????????4953??2011-03-05?17:50??djp\djp.dsp
?????文件?????????575??2011-03-04?19:41??djp\djp.dsw
?????文件????????1291??2011-03-04?18:29??djp\djp.h
?????文件??????230400??2012-05-22?23:16??djp\djp.ncb
?????文件???????54784??2012-05-22?23:16??djp\djp.opt
?????文件????????1765??2012-05-22?23:06??djp\djp.plg
?????文件????????6268??2011-03-04?18:41??djp\djp.rc
?????文件???????16200??2011-03-30?18:35??djp\djpDlg.cpp
?????文件????????1575??2011-03-04?19:55??djp\djpDlg.h
?????文件???????????4??2011-03-05?14:30??djp\motempl.h
?????文件????????8569??2011-03-04?18:33??djp\mscomm.cpp
?????文件????????3221??2011-03-04?18:33??djp\mscomm.h
?????文件????????3525??2011-03-04?18:29??djp\ReadMe.txt
?????目錄???????????0??2013-06-23?10:47??djp\res\
?????文件?????????819??2011-03-04?18:41??djp\resource.h
?????文件????????1078??2011-03-04?18:29??djp\res\djp.ico
?????文件?????????395??2011-03-04?18:29??djp\res\djp.rc2
?????文件?????????205??2011-03-04?18:29??djp\StdAfx.cpp
............此處省略1個文件信息
評論
共有 條評論