资源简介

利用4个框标坐标对航片进行解析内定向, 求仿射变换方程系数, 将像素坐标转换为像片坐标。 数据格式参考Debug中data文件夹中的数据格式。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “Interior.h“
#include “InteriorDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CInteriorApp

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

/////////////////////////////////////////////////////////////////////////////
// CInteriorApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CInteriorApp object

CInteriorApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CInteriorApp initialization

BOOL CInteriorApp::InitInstance()
{
AfxEnableControlContainer();
SetDialogBkColor(RGB(153204204)RGB(515190));
// SetDialogBkColor(RGB(0172246)RGB(000));

// 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

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

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

     文件      10349  2009-12-25 14:11  Interior\CABBA.RES

     文件       2884  2009-12-26 00:24  Interior\Interior\Debug\DATA\像片坐标.dat

     文件       2545  2009-12-24 15:33  Interior\Interior\Debug\DATA\像片坐标check.dat

     文件       1967  2009-12-25 13:06  Interior\Interior\Debug\DATA\像素坐标.dat

     文件       1103  2009-12-25 23:27  Interior\Interior\Debug\DATA\框标坐标.dat

     文件        862  2009-12-24 16:29  Interior\Interior\Debug\DATA\框标坐标.txt

     文件     147542  2009-12-25 19:15  Interior\Interior\Debug\Interior.exe

     文件         57  2009-12-23 18:31  Interior\Interior\Default.SUP

     文件      31000  2009-12-25 19:14  Interior\Interior\Interior.aps

     文件       2894  2010-01-06 22:55  Interior\Interior\Interior.clw

     文件       2194  2009-12-23 17:40  Interior\Interior\Interior.cpp

     文件       4261  2009-12-24 15:31  Interior\Interior\Interior.dsp

     文件        539  2009-12-23 16:13  Interior\Interior\Interior.dsw

     文件       1346  2009-12-23 16:13  Interior\Interior\Interior.h

     文件     132096  2010-01-06 22:55  Interior\Interior\Interior.ncb

     文件      64000  2010-01-06 22:55  Interior\Interior\Interior.opt

     文件        980  2009-12-25 19:15  Interior\Interior\Interior.plg

     文件       9063  2009-12-24 15:38  Interior\Interior\Interior.rc

     文件      17688  2009-12-25 19:15  Interior\Interior\InteriorDlg.cpp

     文件       2978  2009-12-24 15:34  Interior\Interior\InteriorDlg.h

     文件       3615  2009-12-23 16:13  Interior\Interior\ReadMe.txt

     文件       2102  2009-12-24 14:04  Interior\Interior\res\folder32.bmp

     文件       7278  2009-12-23 17:16  Interior\Interior\res\Interior.ico

     文件        400  2009-12-23 16:13  Interior\Interior\res\Interior.rc2

     文件       3216  2009-12-24 14:35  Interior\Interior\resource.h

     文件        210  2009-12-23 16:13  Interior\Interior\StdAfx.cpp

     文件       1054  2009-12-23 16:13  Interior\Interior\StdAfx.h

     文件       3223  2009-12-25 19:02  Interior\像片坐标.dat

     文件       2793  2009-12-23 19:46  Interior\方毅\方毅\200732590234.txt

     文件       2884  2009-12-25 17:57  Interior\方毅\方毅\DATA\DATA\像片坐标.dat

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

评论

共有 条评论