• 大小: 106KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-08
  • 语言: C/C++
  • 标签: 前方交会  

资源简介

摄影测量中对立体像对前方交会的源码,适应于VC++环境,自带模拟数据。

资源截图

代码片段和文件信息

// DLGDataImport.cpp : 实现文件
//

#include “stdafx.h“
#include “space resection.h“
#include “DLGDataImport.h“


// CDLGDataImport 对话框

IMPLEMENT_DYNAMIC(CDLGDataImport CDialog)

CDLGDataImport::CDLGDataImport(CWnd* pParent /*=NULL*/)
: CDialog(CDLGDataImport::IDD pParent)
{
filenameimage = ““;
filenameterr = ““;

}

CDLGDataImport::~CDLGDataImport()
{
}

void CDLGDataImport::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Control(pDX IDC_EDIT_IMAGEP cDataImage);//
DDX_Control(pDX IDC_EDIT_TERRP cDataTerr);//
}


BEGIN_MESSAGE_MAP(CDLGDataImport CDialog)
ON_BN_CLICKED(IDC_BTN_IMAGEF &CDLGDataImport::OnBnClickedBtnImagef)
ON_BN_CLICKED(IDC_BTN_TERRF2 &CDLGDataImport::OnBnClickedBtnTerrf2)
END_MESSAGE_MAP()


// CDLGDataImport 消息处理程序
//像点坐标导入
void CDLGDataImport::OnBnClickedBtnImagef()
{
// TODO: 在此添加控件通知处理程序代码
//LPCTSTR lpszFilter  = “|Polyline (*.shp)|*.shp|Polygon (*.shp)|*.shp|NullShp (*.shp)|*.shp||“;
CFileDialog fDlg(false00OFN_HIDEREADONLY|OFN_FILEMUSTEXIST
_T(“(*.txt)|*.txt||“)00);
if( fDlg.DoModal() != IDCANCEL )
{
CString pFileName;
pFileName = fDlg.GetPathName();//文件名设置
cDataImage.SetWindowText(pFileName);
filenameimage = pFileName;
}
}

//控制点坐标导入
void CDLGDataImport::OnBnClickedBtnTerrf2()
{
// TODO: 在此添加控件通知处理程序代码
CFileDialog fDlg(false00OFN_HIDEREADONLY|OFN_FILEMUSTEXIST
_T(“(*.txt)|*.txt||“)00);
if( fDlg.DoModal() != IDCANCEL )
{
CString pFileName;
pFileName = fDlg.GetPathName();//文件名设置
cDataTerr.SetWindowText(pFileName);
filenameterr = pFileName;
}
}

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

     文件        278  2008-12-22 11:29  space resection\space resection\Data_Result\forinsetion result.txt

     文件         55  2008-12-20 21:23  space resection\space resection\Data_Result\image.txt

     文件        364  2008-12-22 11:28  space resection\space resection\Data_Result\Resection result.txt

     文件        104  2008-12-20 22:16  space resection\space resection\Data_Result\terrain.txt

     文件       1706  2008-12-20 20:19  space resection\space resection\DLGDataImport.cpp

     文件        553  2008-12-20 20:11  space resection\space resection\DLGDataImport.h

     文件       1286  2008-12-21 13:45  space resection\space resection\DLGExelements.cpp

     文件        588  2009-01-12 11:57  space resection\space resection\DLGExelements.h

     文件        759  2008-12-22 11:26  space resection\space resection\DLGInElements.cpp

     文件        457  2008-12-21 09:54  space resection\space resection\DLGInElements.h

     文件       1805  2008-12-20 17:23  space resection\space resection\MainFrm.cpp

     文件        655  2008-12-20 17:23  space resection\space resection\MainFrm.h

     文件        107  2008-12-20 19:21  space resection\space resection\Matrix.cpp

     文件       1823  2008-12-20 19:21  space resection\space resection\Matrix.h

     文件       3614  2008-12-20 17:23  space resection\space resection\ReadMe.txt

     文件      21630  2005-12-08 14:56  space resection\space resection\res\space resection.ico

     文件       1078  2005-12-08 14:56  space resection\space resection\res\space resectionDoc.ico

     文件        370  2008-12-20 17:23  space resection\space resection\res\spaceresection.rc2

     文件       1078  2005-12-08 14:56  space resection\space resection\res\Toolbar.bmp

     文件       1794  2008-12-21 11:09  space resection\space resection\resource.h

     文件      55028  2009-01-12 11:29  space resection\space resection\space resection.aps

     文件       3394  2008-12-20 17:29  space resection\space resection\space resection.cpp

     文件     188416  2008-12-21 22:44  space resection\space resection\space resection.exe

     文件        525  2008-12-20 17:23  space resection\space resection\space resection.h

     文件      14622  2008-12-21 22:42  space resection\space resection\space resection.rc

     文件       6499  2008-12-21 14:30  space resection\space resection\space resection.vcproj

     文件       1427  2008-12-22 11:26  space resection\space resection\space resection.vcproj.8428FB43707E4AD.Administrator.user

     文件       1407  2009-01-12 11:57  space resection\space resection\space resection.vcproj.TRAMP.Administrator.user

     文件       1172  2008-12-20 19:57  space resection\space resection\space resectionDoc.cpp

     文件        607  2008-12-20 19:57  space resection\space resection\space resectionDoc.h

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

评论

共有 条评论