vision.cpp
上传用户:zhaobiao
上传日期:2013-10-27
资源大小:92k
文件大小:2k
源码类别:

OpenCV

开发平台:

Visual C++

  1. // vision.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "aa.h"
  5. #include "vision.h"
  6. #include "cvapp.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // Cvision dialog
  14. Cvision::Cvision(CWnd* pParent /*=NULL*/)
  15. : CDialog(Cvision::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(Cvision)
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. }
  21. void Cvision::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(Cvision)
  25. // NOTE: the ClassWizard will add DDX and DDV calls here
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(Cvision, CDialog)
  29. //{{AFX_MSG_MAP(Cvision)
  30. ON_BN_CLICKED(IDC_BUTTON1, OnOpen)
  31. ON_BN_CLICKED(IDC_BUTTON2, OnProcess)
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // Cvision message handlers
  36. void Cvision::OnOpen() 
  37. {
  38.   CFileDialog dlg(TRUE, _T("*.bmp"), "", 
  39.                   OFN_FILEMUSTEXIST|OFN_PATHMUSTEXIST|OFN_HIDEREADONLY,
  40.                   "image files (*.bmp; *.jpg) |*.bmp;*.jpg|AVI files (*.avi) |*.avi|All Files (*.*)|*.*||",NULL);
  41.   char title[]= {"Open Image"};
  42.   dlg.m_ofn.lpstrTitle= title;
  43.   if (dlg.DoModal() == IDOK) {
  44.     CString path= dlg.GetPathName();
  45.     if (proc != 0)
  46.       delete proc;
  47.     proc= new ImageProcessor(path);
  48.   }
  49. }
  50. void Cvision::OnProcess() 
  51. {
  52.       if (proc != 0) {
  53.             proc->execute();
  54.             proc->display();
  55.       }
  56. }