HistoDialog.h
上传用户:jjiangjuan
上传日期:2013-03-27
资源大小:59k
文件大小:1k
源码类别:

波变换

开发平台:

Visual C++

  1. // HistoDialog.h: interface for the CHistoDialog class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_HISTODIALOG_H__0825CB42_BA68_11D9_AF65_0000B4589F02__INCLUDED_)
  5. #define AFX_HISTODIALOG_H__0825CB42_BA68_11D9_AF65_0000B4589F02__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. //直方图的原点坐标
  10. #define originX 410
  11. #define originY 280
  12. #define start_x 400
  13. #define start_y 25 
  14. #define end_x 700
  15. #define end_y 300
  16. #include "ImageObject.h"
  17. class CHistoDialog  
  18. {
  19. public:
  20. CHistoDialog();
  21. virtual ~CHistoDialog();
  22. void Draw(BYTE lpBmpData[COL][ROW],int GrayLvlCount[]);
  23. CWnd* hWnd;
  24. bool first;
  25. protected:
  26. private:
  27. };
  28. #endif // !defined(AFX_HISTODIALOG_H__0825CB42_BA68_11D9_AF65_0000B4589F02__INCLUDED_)