图像拼接技术.cpp
上传用户:pureled
上传日期:2013-05-27
资源大小:1078k
文件大小:4k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // 图像拼接技术.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "图像拼接技术.h"
  5. #include "MainFrm.h"
  6. #include "ChildFrm.h"
  7. #include "图像拼接技术Doc.h"
  8. #include "图像拼接技术View.h"
  9. #include "Open2.h"
  10. #ifdef _DEBUG
  11. #define new DEBUG_NEW
  12. #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CMyApp
  17. BEGIN_MESSAGE_MAP(CMyApp, CWinApp)
  18. //{{AFX_MSG_MAP(CMyApp)
  19. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  20. // NOTE - the ClassWizard will add and remove mapping macros here.
  21. //    DO NOT EDIT what you see in these blocks of generated code!
  22. //}}AFX_MSG_MAP
  23. // Standard file based document commands
  24. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  25. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  26. // Standard print setup command
  27. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  28. END_MESSAGE_MAP()
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CMyApp construction
  31. CMyApp::CMyApp()
  32. {
  33. // TODO: add construction code here,
  34. // Place all significant initialization in InitInstance
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // The one and only CMyApp object
  38. CMyApp theApp;
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CMyApp initialization
  41. BOOL CMyApp::InitInstance()
  42. {
  43. // Standard initialization
  44. // If you are not using these features and wish to reduce the size
  45. //  of your final executable, you should remove from the following
  46. //  the specific initialization routines you do not need.
  47. COpen ml;
  48. if(ml.DoModal()!=IDOK)
  49. return 0;
  50. #ifdef _AFXDLL
  51. Enable3dControls(); // Call this when using MFC in a shared DLL
  52. #else
  53. Enable3dControlsStatic(); // Call this when linking to MFC statically
  54. #endif
  55. // Change the registry key under which our settings are stored.
  56. // TODO: You should modify this string to be something appropriate
  57. // such as the name of your company or organization.
  58. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  59. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  60. // Register the application's document templates.  Document templates
  61. //  serve as the connection between documents, frame windows and views.
  62. CMultiDocTemplate* pDocTemplate;
  63. pDocTemplate = new CMultiDocTemplate(
  64. IDR_MYTYPE,
  65. RUNTIME_CLASS(CMyDoc),
  66. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  67. RUNTIME_CLASS(CMyView));
  68. AddDocTemplate(pDocTemplate);
  69. // create main MDI Frame window
  70. CMainFrame* pMainFrame = new CMainFrame;
  71. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  72. return FALSE;
  73. m_pMainWnd = pMainFrame;
  74. // Parse command line for standard shell commands, DDE, file open
  75. CCommandLineInfo cmdInfo;
  76. ParseCommandLine(cmdInfo);
  77. cmdInfo.m_nShellCommand=CCommandLineInfo::FileNothing;
  78. // Dispatch commands specified on the command line
  79. if (!ProcessShellCommand(cmdInfo))
  80. return FALSE;
  81. // The main window has been initialized, so show and update it.
  82. m_nCmdShow=SW_SHOWMAXIMIZED;//屏幕最大化
  83. pMainFrame->ShowWindow(m_nCmdShow);
  84. pMainFrame->UpdateWindow();
  85. return TRUE;
  86. }
  87. /////////////////////////////////////////////////////////////////////////////
  88. // CAboutDlg dialog used for App About
  89. class CAboutDlg : public CDialog
  90. {
  91. public:
  92. CAboutDlg();
  93. // Dialog Data
  94. //{{AFX_DATA(CAboutDlg)
  95. enum { IDD = IDD_ABOUTBOX };
  96. //}}AFX_DATA
  97. // ClassWizard generated virtual function overrides
  98. //{{AFX_VIRTUAL(CAboutDlg)
  99. protected:
  100. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  101. //}}AFX_VIRTUAL
  102. // Implementation
  103. protected:
  104. //{{AFX_MSG(CAboutDlg)
  105. // No message handlers
  106. //}}AFX_MSG
  107. DECLARE_MESSAGE_MAP()
  108. };
  109. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  110. {
  111. //{{AFX_DATA_INIT(CAboutDlg)
  112. //}}AFX_DATA_INIT
  113. }
  114. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  115. {
  116. CDialog::DoDataExchange(pDX);
  117. //{{AFX_DATA_MAP(CAboutDlg)
  118. //}}AFX_DATA_MAP
  119. }
  120. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  121. //{{AFX_MSG_MAP(CAboutDlg)
  122. // No message handlers
  123. //}}AFX_MSG_MAP
  124. END_MESSAGE_MAP()
  125. // App command to run the dialog
  126. void CMyApp::OnAppAbout()
  127. {
  128. CAboutDlg aboutDlg;
  129. aboutDlg.DoModal();
  130. }
  131. /////////////////////////////////////////////////////////////////////////////
  132. // CMyApp message handlers