main.cpp

Go to the documentation of this file.
00001 
00012 #ifdef WIN32
00013 #define NOMINMAX
00014 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
00015 #include <afxwin.h>         // MFC core and standard components
00016 #include <afxext.h>         // CFileDialog
00017 #endif 
00018 
00019 #include <standard.hpp>
00020 #include "CamCheckerWindow.hpp"
00021 #include "testZhangData.hpp"
00022 
00023 // Global variables
00024 CamCheckerWindow *mainWindow;
00025 
00026 
00027 // Main entry point
00028 int main(int argc, char* argv[])
00029 {
00030         // Uncomment this to test our intrinsics calculations on Zhang's data
00031         // WARNING: this takes a long time -- 5-10 minutes
00032         // testZhangData();
00033 
00034         mainWindow = new CamCheckerWindow(640,480+30);
00035         mainWindow->show(argc, argv);
00036 
00037     return Fl::run();
00038 }

Generated on Mon May 26 11:19:28 2003 for CamChecker by doxygen1.3