matcherView.h
上传用户:quan1896
上传日期:2013-04-17
资源大小:94k
文件大小:2k
源码类别:

2D图形编程

开发平台:

Visual C++

  1. // matcherView.h : interface of the CMatcherView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MATCHERVIEW_H__30419787_5622_4B5B_B71A_A220E5348FD9__INCLUDED_)
  5. #define AFX_MATCHERVIEW_H__30419787_5622_4B5B_B71A_A220E5348FD9__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "cv.h"
  10. #include "highgui.h"
  11. class CMatcherDoc;
  12. class CMatcherView : public CScrollView
  13. {
  14. protected: // create from serialization only
  15. CMatcherView();
  16. DECLARE_DYNCREATE(CMatcherView)
  17. // Attributes
  18. public:
  19. CMatcherDoc* GetDocument();
  20. CImage m_frame1;
  21. int LastHitIndex;//记录最后一次击中角点的索引
  22. IplImage* ShownImage1;
  23. // Operations
  24. public:
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CMatcherView)
  28. public:
  29. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  30. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  31. protected:
  32. virtual void OnInitialUpdate(); // called first time after construct
  33. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  34. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  35. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  36. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. public:
  40. virtual ~CMatcherView();
  41. #ifdef _DEBUG
  42. virtual void AssertValid() const;
  43. virtual void Dump(CDumpContext& dc) const;
  44. #endif
  45. protected:
  46. // Generated message map functions
  47. protected:
  48. //{{AFX_MSG(CMatcherView)
  49. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  50. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  51. afx_msg void OnDelete();
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. #ifndef _DEBUG  // debug version in matcherView.cpp
  56. inline CMatcherDoc* CMatcherView::GetDocument()
  57.    { return (CMatcherDoc*)m_pDocument; }
  58. #endif
  59. /////////////////////////////////////////////////////////////////////////////
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_MATCHERVIEW_H__30419787_5622_4B5B_B71A_A220E5348FD9__INCLUDED_)