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

波变换

开发平台:

Visual C++

  1. // LPRDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "LPR.h"
  5. #include "LPRDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CLPRDlg dialog
  50. CLPRDlg::CLPRDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CLPRDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CLPRDlg)
  54. // NOTE: the ClassWizard will add member initialization here
  55. //}}AFX_DATA_INIT
  56. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  57. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  58. }
  59. void CLPRDlg::DoDataExchange(CDataExchange* pDX)
  60. {
  61. CDialog::DoDataExchange(pDX);
  62. //{{AFX_DATA_MAP(CLPRDlg)
  63. DDX_Control(pDX, IDC_LP, m_LP);
  64. DDX_Control(pDX, IDC_DISPLAY, m_image);
  65. //}}AFX_DATA_MAP
  66. }
  67. BEGIN_MESSAGE_MAP(CLPRDlg, CDialog)
  68. //{{AFX_MSG_MAP(CLPRDlg)
  69. ON_WM_SYSCOMMAND()
  70. ON_WM_PAINT()
  71. ON_WM_QUERYDRAGICON()
  72. ON_BN_CLICKED(IDC_EXIT, OnExit)
  73. ON_BN_CLICKED(IDC_OPEN, OnOpen)
  74. ON_BN_CLICKED(IDC_GRAY, OnGray)
  75. ON_BN_CLICKED(IDC_GRAY_ADJUST, OnGrayAdjust)
  76. ON_BN_CLICKED(IDC_EDGE, OnEdge)
  77. ON_BN_CLICKED(IDC_CUT, OnCut)
  78. ON_BN_CLICKED(IDC_BINARY, OnBinary)
  79. //}}AFX_MSG_MAP
  80. END_MESSAGE_MAP()
  81. /////////////////////////////////////////////////////////////////////////////
  82. // CLPRDlg message handlers
  83. BOOL CLPRDlg::OnInitDialog()
  84. {
  85. CDialog::OnInitDialog();
  86. // Set the icon for this dialog.  The framework does this automatically
  87. //  when the application's main window is not a dialog
  88. SetIcon(m_hIcon, TRUE); // Set big icon
  89. SetIcon(m_hIcon, FALSE); // Set small icon
  90. // TODO: Add extra initialization here
  91. m_histo.hWnd=this;
  92. memset(GraylvCount,0,sizeof(GraylvCount));
  93. memset(LPArea,0,sizeof(LPArea));
  94. return TRUE;  // return TRUE  unless you set the focus to a control
  95. }
  96. void CLPRDlg::OnSysCommand(UINT nID, LPARAM lParam)
  97. {
  98. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  99. {
  100. CAboutDlg dlgAbout;
  101. dlgAbout.DoModal();
  102. }
  103. else
  104. {
  105. CDialog::OnSysCommand(nID, lParam);
  106. }
  107. }
  108. // If you add a minimize button to your dialog, you will need the code below
  109. //  to draw the icon.  For MFC applications using the document/view model,
  110. //  this is automatically done for you by the framework.
  111. void CLPRDlg::OnPaint() 
  112. {
  113. if (IsIconic())
  114. {
  115. CPaintDC dc(this); // device context for painting
  116. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  117. // Center icon in client rectangle
  118. int cxIcon = GetSystemMetrics(SM_CXICON);
  119. int cyIcon = GetSystemMetrics(SM_CYICON);
  120. CRect rect;
  121. GetClientRect(&rect);
  122. int x = (rect.Width() - cxIcon + 1) / 2;
  123. int y = (rect.Height() - cyIcon + 1) / 2;
  124. // Draw the icon
  125. dc.DrawIcon(x, y, m_hIcon);
  126. }
  127. else
  128. {
  129. CDialog::OnPaint();
  130. }
  131. m_histo.Draw(lpData,GraylvCount);//对直方图进行重绘
  132. }
  133. // The system calls this to obtain the cursor to display while the user drags
  134. //  the minimized window.
  135. HCURSOR CLPRDlg::OnQueryDragIcon()
  136. {
  137. return (HCURSOR) m_hIcon;
  138. }
  139. void CLPRDlg::OnExit() 
  140. {
  141. // TODO: Add your control notification handler code here
  142. exit(0);
  143. }
  144. //打开bmp文件
  145. void CLPRDlg::OnOpen() 
  146. {
  147. // TODO: Add your control notification handler code here
  148. m_image.LoadBmp();
  149. }
  150. //转灰度图
  151. void CLPRDlg::OnGray() 
  152. {
  153. // TODO: Add your control notification handler code here
  154. m_image.gray(lpData);
  155.     m_histo.first = true;
  156. m_histo.Draw(lpData,GraylvCount);
  157. }
  158. void CLPRDlg::OnGrayAdjust() 
  159. {
  160. // TODO: Add your control notification handler code here
  161.    
  162. m_image.InteEqualize(lpData,GraylvCount);
  163.    m_histo.Draw(lpData,GraylvCount);
  164.    Invalidate(FALSE);
  165. }
  166. void CLPRDlg::OnEdge() 
  167. {
  168. // TODO: Add your control notification handler code here
  169. m_image.GetEdge();
  170. Invalidate(FALSE);
  171. }
  172. void CLPRDlg::OnCut() 
  173. {
  174. // TODO: Add your control notification handler code here
  175. m_image.DelNoise();
  176.     P=m_image.GetLPPos();
  177. memset(LPArea,0,sizeof(LPArea));
  178. if(P!=NULL)
  179.     {
  180. BITMAPINFO DIBINFO=m_image.WriteDibFile(P->y0-P->y1+1,P->x1-P->x0+1,LPArea);
  181.     m_LP.DIB=DIBINFO;
  182.     for(int i=0;i<30000;i++)
  183. {
  184.     m_LP.LPArea[i]=LPArea[i];
  185. }
  186.     Invalidate(TRUE);
  187. }
  188. }
  189. void CLPRDlg::OnBinary() 
  190. {
  191. // TODO: Add your control notification handler code here
  192.     m_image.Binary(m_LP.DIB,LPArea);
  193. for(int i=0;i<30000;i++)
  194. {
  195.     m_LP.LPArea[i]=LPArea[i];
  196. }
  197.     Invalidate(TRUE);
  198. }