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.
|
|
|
|
|
/******************************************************************************
|
|
|
|
|
|
Copyright(C):2015~2018 hzleaper
|
|
|
|
|
|
FileName:AlgorithmZK.h
|
|
|
|
|
|
Author:zhikun wu
|
|
|
|
|
|
Email:zk.wu@hzleaper.com
|
|
|
|
|
|
Tools:vs2010 pc on company
|
|
|
|
|
|
Created:2015/05/22
|
|
|
|
|
|
History:22:5:2015 9:18
|
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
#ifndef __ALGORITHM_H_20150522
|
|
|
|
|
|
#define __ALGORITHM_H_20150522
|
|
|
|
|
|
|
|
|
|
|
|
#include "iAlgorithm.h"
|
|
|
|
|
|
|
|
|
|
|
|
class CAlgorithmZK : public IAlgorithm
|
|
|
|
|
|
{
|
|
|
|
|
|
public:
|
|
|
|
|
|
CAlgorithmZK(void);
|
|
|
|
|
|
virtual ~CAlgorithmZK(void);
|
|
|
|
|
|
private:
|
|
|
|
|
|
virtual int IImageAnalysis(class IImageObject* pImgObj, TP_ALGORITHM_OPTION* pOpt);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|