资源简介

本程序基于近景摄影测量,单片空间后方交会算法完成,用C++代码编写,内含有样本数据,以供试验。运行正常,注释完整。

资源截图

代码片段和文件信息

//后方交会
//2013.12.2

#include
#include
#include
#include
#include“Matrix.h“
using namespace std;

void ReadData(double *p char *s int &m)
{
ifstream file1;
int i=0;
file1.open(sios::in|ios::out);
for (i=0; file1.eof()==0; i++)
{
file1>>p[i];
}
file1.close();
}

void main()
{
double data[800]={0.0};
int n;
char *s=“IMG_5850newData_finall.txt“;
ReadData(data s n);
if (n>=800)
{
cout<<“发生溢出错误!“< return;
}
int num = data[0]; //点的个数
double A[2*13]={0.0} AT[13*2]={0.0} ATA[13*13]={0.0}
   NATA[13*13]={0.0} L[2*1]={0.0} ATL[13*1]={0.0} XX[13*1]={0.1};
double *LL = new double[2*num];
double Q = 0.0;  //单位权中误差
double a1a2a3b1b2b3c1c2c3;
double Qii[13] = {0.0};
double mXsm

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

     文件     119808  2013-12-16 00:40  hfjh\Debug\hfjh.exe

     文件     652012  2013-12-16 00:40  hfjh\Debug\hfjh.ilk

     文件    1035264  2013-12-16 00:40  hfjh\Debug\hfjh.pdb

     文件       1274  2012-12-12 22:45  hfjh\hfjh\CMatrix.h

     文件        570  2013-12-16 00:40  hfjh\hfjh\Debug\cl.command.1.tlog

     文件       6004  2013-12-16 00:40  hfjh\hfjh\Debug\CL.read.1.tlog

     文件        276  2013-12-16 00:40  hfjh\hfjh\Debug\CL.write.1.tlog

     文件         81  2013-12-16 00:40  hfjh\hfjh\Debug\hfjh.lastbuildstate

     文件       1516  2013-12-16 00:40  hfjh\hfjh\Debug\hfjh.log

     文件     307588  2013-12-16 00:40  hfjh\hfjh\Debug\hfjh.obj

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link-cvtres.read.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link-cvtres.write.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link-rc.read.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link-rc.write.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10424-cvtres.read.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10424-cvtres.write.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10424-rc.read.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10424-rc.write.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10424.read.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10424.write.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10564-cvtres.read.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10564-cvtres.write.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10564-rc.read.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10564-rc.write.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10564.read.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10564.write.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10716-cvtres.read.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10716-cvtres.write.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10716-rc.read.1.tlog

     文件          2  2013-12-16 00:40  hfjh\hfjh\Debug\link.10716-rc.write.1.tlog

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

评论

共有 条评论

相关资源