You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
#ifndef __I_IMG_PROC_H_20150326
|
|
|
|
|
|
#define __I_IMG_PROC_H_20150326
|
|
|
|
|
|
|
|
|
|
|
|
#include "baseDefine.h"
|
|
|
|
|
|
#include "baseStruct.h"
|
|
|
|
|
|
|
|
|
|
|
|
class IImgProc
|
|
|
|
|
|
{
|
|
|
|
|
|
public:
|
|
|
|
|
|
IImgProc() {}
|
|
|
|
|
|
virtual ~IImgProc() {}
|
|
|
|
|
|
virtual int IImageProcess(class IImageObject* pImgObj) = 0;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|