zoneminder/src/zm_image_analyser.h

45 lines
607 B
C
Raw Normal View History

2013-03-17 07:45:21 +08:00
#ifndef ZM_IMAGE_ANALYSER_H
#define ZM_IMAGE_ANALYSER_H
#include <list>
#include <string>
#include <stdexcept>
#include <memory>
#include "zm.h"
#include "zm_image.h"
#include "zm_zone.h"
#include "zm_event.h"
using namespace std;
//! Class for handling image detection.
class ImageAnalyser {
public:
//!Default constructor.
ImageAnalyser() {};
2013-03-17 07:45:21 +08:00
//! Destructor.
~ImageAnalyser();
2013-03-17 07:45:21 +08:00
//! Copy constructor.
ImageAnalyser(const ImageAnalyser& source);
2013-03-17 07:45:21 +08:00
//! Overloaded operator=.
ImageAnalyser& operator=(const ImageAnalyser& source);
2013-03-17 07:45:21 +08:00
private:
};
#endif //ZM_IMAGE_ANALYSER_H