CImgApply.cpp 491 B

123456789101112131415161718192021222324252627282930313233343536
  1. #include "stdafx.h"
  2. #include "CImgApply.h"
  3. CImgApply::CImgApply():m_pLastEditImg(NULL)
  4. ,m_pCurrentImg(NULL)
  5. ,m_pOriginalImg(NULL)
  6. {
  7. }
  8. CImgApply::~CImgApply()
  9. {
  10. }
  11. void CImgApply::LoadImage(std::string strImagePath)
  12. {
  13. if ( PathFileExists(strImagePath.c_str()) )
  14. {
  15. if ( m_pCurrentImg->data != NULL)
  16. {
  17. }
  18. }
  19. else
  20. {
  21. OutputDebugString(_T("Îļþ²»´æÔÚ\n"));
  22. }
  23. }
  24. void CImgApply::EditImage(Mat * pSrcImg)
  25. {
  26. }
  27. void CImgApply::SaveImage(std::string strSavePath, Mat * pSaveImg)
  28. {
  29. }