• 大小: 323KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-29
  • 语言: C/C++
  • 标签: DLT  

资源简介

摄影测量直接线性变换(DLT)VC++程序代码 代码易懂 注释明确

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “DLT.h“
#include “DLTDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CDLTApp

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

/////////////////////////////////////////////////////////////////////////////
// CDLTApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CDLTApp object

CDLTApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CDLTApp initialization

BOOL CDLTApp::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

CDLTDlg 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;
}

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

     文件      22325  2009-12-13 22:37  摄影测量DLT程序\Debug\DLT.obj

     文件     517120  2010-12-23 09:48  摄影测量DLT程序\Debug\DLT.pdb

     文件       2796  2009-12-13 22:37  摄影测量DLT程序\Debug\DLT.res

     文件     157259  2009-12-13 22:37  摄影测量DLT程序\Debug\DLTDlg.obj

     文件      25600  2010-12-23 15:17  摄影测量DLT程序\Debug\DLTDlg.pdb

     文件     111623  2009-12-13 22:37  摄影测量DLT程序\Debug\StdAfx.obj

     文件     421888  2009-12-13 22:38  摄影测量DLT程序\Debug\vc60.pdb

     文件      21192  2009-12-14 09:09  摄影测量DLT程序\DLT.APS

     文件       1389  2009-12-14 17:30  摄影测量DLT程序\DLT.clw

     文件       2021  2009-12-13 22:37  摄影测量DLT程序\DLT.cpp

     文件        306  2009-12-14 16:42  摄影测量DLT程序\DLT.dep

     文件       3365  2010-12-23 09:48  摄影测量DLT程序\DLT.dsp

     文件        514  2010-12-23 09:48  摄影测量DLT程序\DLT.dsw

     文件       1291  2009-12-13 22:37  摄影测量DLT程序\DLT.h

     文件       5531  2009-12-14 16:42  摄影测量DLT程序\DLT.mak

     文件      74752  2010-12-23 09:48  摄影测量DLT程序\DLT.ncb

     文件      48640  2010-12-23 09:48  摄影测量DLT程序\DLT.opt

     文件       1025  2010-12-23 09:48  摄影测量DLT程序\DLT.plg

     文件       5707  2009-12-13 22:37  摄影测量DLT程序\DLT.rc

     文件      22258  2009-12-13 22:37  摄影测量DLT程序\DLTDlg.cpp

     文件       3401  2010-12-23 15:17  摄影测量DLT程序\DLTDlg.dsp

     文件        520  2010-12-23 15:17  摄影测量DLT程序\DLTDlg.dsw

     文件       2691  2009-12-13 22:37  摄影测量DLT程序\DLTDlg.h

     文件      41984  2010-12-23 15:17  摄影测量DLT程序\DLTDlg.ncb

     文件      48640  2010-12-23 15:17  摄影测量DLT程序\DLTDlg.opt

     文件       1288  2010-12-23 15:17  摄影测量DLT程序\DLTDlg.plg

     文件       3525  2009-12-13 22:37  摄影测量DLT程序\ReadMe.txt

     文件       1078  2009-12-13 22:37  摄影测量DLT程序\res\DLT.ico

     文件        395  2009-12-13 22:37  摄影测量DLT程序\res\DLT.rc2

     文件        911  2009-12-13 22:37  摄影测量DLT程序\resource.h

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

评论

共有 条评论

相关资源