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.
24 lines
355 B
C++
24 lines
355 B
C++
#ifndef _ALG_EG_H_
|
|
#define _ALG_EG_H_
|
|
|
|
#include ".\lpbengine.h"
|
|
#include ".\lpalgorithm.h"
|
|
|
|
|
|
|
|
|
|
class algEg : IAlgo
|
|
{
|
|
public:
|
|
algEg();
|
|
~algEg();
|
|
virtual bool Exec(IDetectorTask *lpTask, IDetectorAlgorithm* lpAlgorithm);
|
|
virtual bool Init(IDetectorTask *lpTask, IDetectorAlgorithm* lpAlgorithm);
|
|
cv::Mat background;
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
#endif // _ALG_EG_H_
|