aaDlg.h
上传用户:zhaobiao
上传日期:2013-10-27
资源大小:92k
文件大小:2k
源码类别:

OpenCV

开发平台:

Visual C++

  1. // aaDlg.h : header file
  2. //
  3. #if !defined(AFX_AADLG_H__15027715_4D23_4415_98EB_B819EC2FF654__INCLUDED_)
  4. #define AFX_AADLG_H__15027715_4D23_4415_98EB_B819EC2FF654__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CAaDlg dialog
  10. #include <cv.h>
  11. #include <cxcore.h>
  12. #include <highgui.h>
  13. #include "CBitmapEx.h"
  14. #include "Ipl2DIB.h"
  15. class CAaDlg : public CDialog
  16. {
  17. // Construction
  18. public:
  19. CAaDlg(CWnd* pParent = NULL); // standard constructor
  20. public:
  21. CvvImage cimg;
  22. CvvImage cimg1;
  23. //声明IplImage指针
  24. IplImage* pFrame; 
  25. IplImage* pFrImg;
  26. IplImage* pBkImg;
  27. CvMat* pFrameMat;
  28. CvMat* pFrMat;
  29. CvMat* pBkMat;
  30. CvCapture* pCapture;
  31. IplImage * FitRotate (IplImage* Img_old, double angle,int method);
  32. // Dialog Data
  33. //{{AFX_DATA(CAaDlg)
  34. enum { IDD = IDD_AA_DIALOG };
  35. CString m_nPfs;
  36. //}}AFX_DATA
  37. // ClassWizard generated virtual function overrides
  38. //{{AFX_VIRTUAL(CAaDlg)
  39. public:
  40. virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
  41. protected:
  42. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  43. //}}AFX_VIRTUAL
  44. // Implementation
  45. public:
  46. protected:
  47. HICON m_hIcon;
  48. // Generated message map functions
  49. //{{AFX_MSG(CAaDlg)
  50. virtual BOOL OnInitDialog();
  51. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  52. afx_msg void OnPaint();
  53. afx_msg HCURSOR OnQueryDragIcon();
  54. afx_msg void OnButton1();
  55. afx_msg void OnButton2();
  56. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  57. afx_msg void OnClose();
  58. afx_msg void OnButton3();
  59. afx_msg void OnTimer(UINT nIDEvent);
  60. //}}AFX_MSG
  61. DECLARE_MESSAGE_MAP()
  62. private:
  63. double fps;
  64. };
  65. //{{AFX_INSERT_LOCATION}}
  66. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  67. #endif // !defined(AFX_AADLG_H__15027715_4D23_4415_98EB_B819EC2FF654__INCLUDED_)