ddDoc.h
上传用户:wjfckcom
上传日期:2014-06-28
资源大小:1989k
文件大小:2k
源码类别:

OpenCV

开发平台:

Visual C++

  1. // ddDoc.h : interface of the CDdDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #include "cv.h"
  5. #include "highgui.h"
  6. #if !defined(AFX_DDDOC_H__10CC38ED_E123_472C_9C02_B368B4AA4A1F__INCLUDED_)
  7. #define AFX_DDDOC_H__10CC38ED_E123_472C_9C02_B368B4AA4A1F__INCLUDED_
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11. class CDdDoc : public CDocument
  12. {
  13. protected: // create from serialization only
  14. CDdDoc();
  15. DECLARE_DYNCREATE(CDdDoc)
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CDdDoc)
  23. public:
  24. virtual BOOL OnNewDocument();
  25. virtual void Serialize(CArchive& ar);
  26. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. int width;
  31. int height;
  32. IplImage* pSrcImg;
  33. CvvImage myimage;
  34. virtual ~CDdDoc();
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. protected:
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CDdDoc)
  43. // NOTE - the ClassWizard will add and remove member functions here.
  44. //    DO NOT EDIT what you see in these blocks of generated code !
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_DDDOC_H__10CC38ED_E123_472C_9C02_B368B4AA4A1F__INCLUDED_)