www.pudn.com > ManualCameraCalibrationSourceCode_v1.0.rar > ZhangImplementation_1.cpp


/********************************************************************** 
 
Camera Calibration Software v1.0   
Copyright 2004 Engin Tola 
 
-- 
 
Engin Tola  
March 20, 2004 
 
-- 
 
This piece of program contained in Camera Calibration Software v1.0 can be used, 
copied, modified, merged, published, and/or have copies distributed for academic  
or research purposes only without restriction under the following conditions: 
 
1. The above header and this permission notice shall be included in all copies  
    or substantial portions of the program 
 
2. The software is provided "as is", without warranty of any kind, express or  
   implied, including but not limited to the warranties of merchantability, fitness  
   for a particular purpose and non-infringement. In no event shall the author(s) be  
   liable for any claim, damages or liability, whether in an action of contract, tort  
   or otherwise, arising from, out of or in connection with Camera Calibration  
   Software v1.0 or the use or other dealings in Camera Calibration Software v1.0 
 
3. If you use this piece of code for research purposes, refer to  
 
	Tola, Engin. 2006 June 12. Homepage.  
 
4. An acknowledgement note should be included as:  
 
    "The software used here was originally created by Tola, Engin. 2006 June 12.  
	Homepage.  
 
 
**********************************************************************/ 
 
// ZhangImplementation_1.cpp : Defines the class behaviors for the application. 
// 
 
#include "stdafx.h" 
#include "ZhangImplementation_1.h" 
#include "ZhangImplementation_1Dlg.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CZhangImplementation_1App 
 
BEGIN_MESSAGE_MAP(CZhangImplementation_1App, CWinApp) 
	//{{AFX_MSG_MAP(CZhangImplementation_1App) 
		// 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() 
 
///////////////////////////////////////////////////////////////////////////// 
// CZhangImplementation_1App construction 
 
CZhangImplementation_1App::CZhangImplementation_1App() 
{ 
	// TODO: add construction code here, 
	// Place all significant initialization in InitInstance 
} 
 
///////////////////////////////////////////////////////////////////////////// 
// The one and only CZhangImplementation_1App object 
 
CZhangImplementation_1App theApp; 
 
///////////////////////////////////////////////////////////////////////////// 
// CZhangImplementation_1App initialization 
 
BOOL CZhangImplementation_1App::InitInstance() 
{ 
	AfxEnableControlContainer(); 
 
	// 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 
 
	CZhangImplementation_1Dlg 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; 
}