mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-06 08:27:08 +08:00
Added motiondetector to alpr namespace
This commit is contained in:
@@ -1,13 +1,22 @@
|
||||
|
||||
#ifndef OPENALPR_MOTIONDETECTOR_H
|
||||
#define OPENALPR_MOTIONDETECTOR_H
|
||||
|
||||
#include "opencv2/opencv.hpp"
|
||||
|
||||
class MotionDetector
|
||||
namespace alpr
|
||||
{
|
||||
private: cv::Ptr<cv::BackgroundSubtractor> pMOG2; //MOG2 Background subtractor
|
||||
private: cv::Mat fgMaskMOG2;
|
||||
public:
|
||||
MotionDetector();
|
||||
virtual ~MotionDetector();
|
||||
class MotionDetector
|
||||
{
|
||||
private: cv::Ptr<cv::BackgroundSubtractor> pMOG2; //MOG2 Background subtractor
|
||||
private: cv::Mat fgMaskMOG2;
|
||||
public:
|
||||
MotionDetector();
|
||||
virtual ~MotionDetector();
|
||||
|
||||
void ResetMotionDetection(cv::Mat* frame);
|
||||
cv::Rect MotionDetect(cv::Mat* frame);
|
||||
};
|
||||
void ResetMotionDetection(cv::Mat* frame);
|
||||
cv::Rect MotionDetect(cv::Mat* frame);
|
||||
};
|
||||
}
|
||||
|
||||
#endif // OPENALPR_MOTIONDETECTOR_H
|
Reference in New Issue
Block a user