ddDoc.cpp
上传用户:wjfckcom
上传日期:2014-06-28
资源大小:1989k
文件大小:2k
源码类别:

OpenCV

开发平台:

Visual C++

  1. // ddDoc.cpp : implementation of the CDdDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "dd.h"
  5. #include "ddDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDdDoc
  13. IMPLEMENT_DYNCREATE(CDdDoc, CDocument)
  14. BEGIN_MESSAGE_MAP(CDdDoc, CDocument)
  15. //{{AFX_MSG_MAP(CDdDoc)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code!
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CDdDoc construction/destruction
  22. CDdDoc::CDdDoc()
  23. : pSrcImg(NULL)
  24. , height(0)
  25. , width(0)
  26. {
  27. // TODO: add one-time construction code here
  28. }
  29. CDdDoc::~CDdDoc()
  30. {
  31. }
  32. BOOL CDdDoc::OnNewDocument()
  33. {
  34. if (!CDocument::OnNewDocument())
  35. return FALSE;
  36. // TODO: add reinitialization code here
  37. // (SDI documents will reuse this document)
  38. return TRUE;
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CDdDoc serialization
  42. void CDdDoc::Serialize(CArchive& ar)
  43. {
  44. if (ar.IsStoring())
  45. {
  46. // TODO: add storing code here
  47. }
  48. else
  49. {
  50. // TODO: add loading code here
  51. }
  52. }
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CDdDoc diagnostics
  55. #ifdef _DEBUG
  56. void CDdDoc::AssertValid() const
  57. {
  58. CDocument::AssertValid();
  59. }
  60. void CDdDoc::Dump(CDumpContext& dc) const
  61. {
  62. CDocument::Dump(dc);
  63. }
  64. #endif //_DEBUG
  65. /////////////////////////////////////////////////////////////////////////////
  66. // CDdDoc commands
  67. BOOL CDdDoc::OnOpenDocument(LPCTSTR lpszPathName) 
  68. {
  69. if (!CDocument::OnOpenDocument(lpszPathName))
  70. return FALSE;
  71. // TODO: Add your specialized creation code here
  72. myimage.Load(lpszPathName);
  73. width = myimage.Width();
  74. height = myimage.Height();
  75. pSrcImg = cvCreateImage(cvSize(width, height), 8, 1);
  76. pSrcImg = myimage.GetImage();
  77. return TRUE;
  78. }