123456789101112131415161718192021222324252627282930313233343536 |
- #include "stdafx.h"
- #include "CImgApply.h"
- CImgApply::CImgApply():m_pLastEditImg(NULL)
- ,m_pCurrentImg(NULL)
- ,m_pOriginalImg(NULL)
- {
- }
- CImgApply::~CImgApply()
- {
- }
- void CImgApply::LoadImage(std::string strImagePath)
- {
- if ( PathFileExists(strImagePath.c_str()) )
- {
- if ( m_pCurrentImg->data != NULL)
- {
- }
- }
- else
- {
- OutputDebugString(_T("Îļþ²»´æÔÚ\n"));
- }
- }
- void CImgApply::EditImage(Mat * pSrcImg)
- {
- }
- void CImgApply::SaveImage(std::string strSavePath, Mat * pSaveImg)
- {
- }
|