资源简介

海康威视相机标定DEMO,可以进行抓图,相机参数的计算以及标定

资源截图

代码片段和文件信息

// RealPlay.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “RealPlay.h“
#include “RealPlayDlg.h“
#include “GeneralDef.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

//全局变量
CRealPlayDlg *g_pMainDlg = NULL;

/////////////////////////////////////////////////////////////////////////////
// CRealPlayApp

BEGIN_MESSAGE_MAP(CRealPlayApp CWinApp)
//{{AFX_MSG_MAP(CRealPlayApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CRealPlayApp construction

CRealPlayApp::CRealPlayApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CRealPlayApp object

CRealPlayApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CRealPlayApp initialization

BOOL CRealPlayApp::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.

    NET_DVR_Init();          //Init SDK

CRealPlayDlg dlg;
m_pMainWnd = &dlg;
g_pMainDlg = &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;
}

int CRealPlayApp::ExitInstance() 
{
// TODO: Add your specialized code here and/or call the base class
NET_DVR_Cleanup();
return CWinApp::ExitInstance();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-07-16 16:10  海康威视标定DEMO\
     文件      922678  2018-07-16 16:07  海康威视标定DEMO\2.bmp
     文件     3686454  2018-07-16 16:05  海康威视标定DEMO\20180716160519.bmp
     文件     3686454  2018-07-16 16:06  海康威视标定DEMO\20180716160602.bmp
     文件     2764854  2018-07-16 16:06  海康威视标定DEMO\20180716160602_calibrated.bmp
     文件     3686454  2018-07-16 16:07  海康威视标定DEMO\20180716160702.bmp
     文件     2764854  2018-07-16 16:07  海康威视标定DEMO\20180716160702_calibrated.bmp
     文件      433664  2018-03-05 15:30  海康威视标定DEMO\AnalyzeData.dll
     文件      610816  2018-03-05 15:30  海康威视标定DEMO\AudioIntercom.dll
     文件      146944  2018-03-05 15:30  海康威视标定DEMO\AudioRender.dll
     文件     2106216  2018-03-05 15:30  海康威视标定DEMO\D3DCompiler_43.dll
     文件     1998168  2018-03-05 15:30  海康威视标定DEMO\D3DX9_43.dll
     文件        5078  2018-03-05 15:30  海康威视标定DEMO\DataType.h
     文件       24475  2018-03-05 15:30  海康威视标定DEMO\DecodeCardSdk.h
     文件      410624  2018-03-05 15:30  海康威视标定DEMO\EagleEyeRender.dll
     文件      200480  2018-03-05 15:30  海康威视标定DEMO\GdiPlus.lib
     文件        2030  2014-03-05 16:27  海康威视标定DEMO\GeneralDef.h
     文件      486912  2018-03-05 15:38  海康威视标定DEMO\HCAlarm.dll
     文件       14512  2018-03-05 15:38  海康威视标定DEMO\HCAlarm.lib
     文件     1201152  2018-03-05 15:37  海康威视标定DEMO\HCCore.dll
     文件      197364  2018-03-05 15:37  海康威视标定DEMO\HCCore.lib
     文件      829440  2018-03-05 15:38  海康威视标定DEMO\HCCoreDevCfg.dll
     文件      616448  2018-03-05 15:39  海康威视标定DEMO\HCDisplay.dll
     文件     1046016  2018-03-05 15:39  海康威视标定DEMO\HCGeneralCfgMgr.dll
     文件       48900  2018-03-05 15:39  海康威视标定DEMO\HCGeneralCfgMgr.lib
     文件      766976  2018-03-05 15:39  海康威视标定DEMO\HCIndustry.dll
     文件      672768  2018-03-05 15:39  海康威视标定DEMO\HCNetSDK.dll
     文件     2339900  2018-03-05 15:30  海康威视标定DEMO\HCNetSDK.h
     文件      224114  2018-03-05 15:39  海康威视标定DEMO\HCNetSDK.lib
     文件      441856  2018-03-05 15:38  海康威视标定DEMO\HCPlayBack.dll
     文件      619520  2018-03-05 15:38  海康威视标定DEMO\HCPreview.dll
............此处省略140个文件信息

评论

共有 条评论