小波变换View.h
上传用户:aqingfeng
上传日期:2014-03-25
资源大小:1839k
文件大小:2k
源码类别:

波变换

开发平台:

Visual C++

  1. // 小波变换View.h : interface of the CMyView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_VIEW_H__076499FB_B013_48B4_8F3A_C99413C92666__INCLUDED_)
  5. #define AFX_VIEW_H__076499FB_B013_48B4_8F3A_C99413C92666__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "WaveTranform.h"
  10. class CMyView : public CView
  11. {
  12. protected: // create from serialization only
  13. CMyView();
  14. DECLARE_DYNCREATE(CMyView)
  15. // Attributes
  16. public:
  17. CMyDoc* GetDocument();
  18. int FWidth;
  19. UINT wavefunction;
  20. // Operations
  21. public:
  22. CWaveTranform m_wavetransform;
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CMyView)
  26. public:
  27. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  28. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  29. protected:
  30. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  31. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  32. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. public:
  36. virtual ~CMyView();
  37. BOOL Dwvlttrans(LPSTR lpDIB,LPSTR lpDIBBits);
  38.     BOOL Cwvlttrans(LPSTR lpDIB,LPSTR lpDIBBits);
  39.     BOOL Swvlttrans(LPSTR lpDIB,LPSTR lpDIBBits);
  40. #ifdef _DEBUG
  41. virtual void AssertValid() const;
  42. virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44. protected:
  45. UINT m_nLevel;
  46. double *Lr;  //重建尺度函数
  47. double *Hr;  //重建母函数
  48. double *Ld;  //分解尺度函数
  49. double *Hd;  //分解母函数
  50. // Generated message map functions
  51. protected:
  52. //{{AFX_MSG(CMyView)
  53. afx_msg void OnCompression();
  54. afx_msg void OnDiscompression();
  55. afx_msg void OnWaveletconstruction();
  56. afx_msg void OnDiprocFusion2();
  57. afx_msg void OnDiprocFusion3();
  58. afx_msg void OnDiprocFusion4();
  59. afx_msg void OnImageHebing();
  60. afx_msg void OnDetectTemplate();
  61. //}}AFX_MSG
  62. DECLARE_MESSAGE_MAP()
  63. };
  64. #ifndef _DEBUG  // debug version in 小波变换View.cpp
  65. inline CMyDoc* CMyView::GetDocument()
  66.    { return (CMyDoc*)m_pDocument; }
  67. #endif
  68. /////////////////////////////////////////////////////////////////////////////
  69. //{{AFX_INSERT_LOCATION}}
  70. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  71. #endif // !defined(AFX_VIEW_H__076499FB_B013_48B4_8F3A_C99413C92666__INCLUDED_)