資源簡介
攝影測量中對立體像對前方交會的源碼,適應于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個文件信息
- 上一篇:VC++ 四種進程間通信的完整
- 下一篇:操作系統3種頁面置換算法 C++實現
評論
共有 條評論