mymfc.h
上传用户:wjt888999
上传日期:2022-08-11
资源大小:5225k
文件大小:1k
源码类别:

OpenCV

开发平台:

Visual C++

  1. // mymfc.h : main header file for the PROJECT_NAME application
  2. //
  3. #pragma once
  4. #ifndef __AFXWIN_H__
  5. #error "include 'stdafx.h' before including this file for PCH"
  6. #endif
  7. #include "resource.h" // main symbols
  8. #include "cv.h"
  9. #include "highgui.h"
  10. #include "camerads.h"
  11. #include <stdarg.h>
  12. #include <string.h>
  13. #include <time.h>
  14. #define IMAGE_WIDTH 256
  15. #define IMAGE_HEIGHT 256
  16. #define IMAGE_CHANNELS 3
  17. // CmymfcApp:
  18. // See mymfc.cpp for the implementation of this class
  19. //
  20. class CmymfcApp : public CWinApp
  21. {
  22. public:
  23. CmymfcApp();
  24. // Overrides
  25. public:
  26. virtual BOOL InitInstance();
  27. // Implementation
  28. DECLARE_MESSAGE_MAP()
  29. };
  30. extern CmymfcApp theApp;