AutoCar  v1.0.0
detect_factory.h
1 #ifndef DETECT_FACTORY_H
2 #define DETECT_FACTORY_H
3 #include <opencv2/opencv.hpp>
4 namespace autocar
5 {
6 namespace vision_mul
7 {
9 {
10 public:
11  virtual bool detect(const cv::Mat &image, bool detect_blue) = 0;
12  //virtual void get_info() = 0;
13 };
14 }
15 }
16 
17 #endif // DETECT_FACTORY_H
Definition: vel2odom.h:5
Definition: detect_factory.h:8