summaryrefslogtreecommitdiff
path: root/steer_interface.h
blob: 31d8453b4319fe994f90b5c8abdaa8185ce962de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __STEER_IFACE_H__
#define __STEER_IFACE_H__

#include <opencv2/opencv.hpp>

using namespace cv;

class SteerIface
{
	public:
		virtual void process_image(const Mat& img)=0;
		virtual double get_steer_data()=0;
		virtual double get_confidence()=0;
};


#endif