summaryrefslogtreecommitdiff
path: root/road_thresholder_iface.h
blob: 2205ca8a17949c1b92db46c6f5aee08b1ee26f34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __ROAD_THRESHOLDER_IFACE_H__
#define __ROAD_THRESHOLDER_IFACE_H__

#include <opencv2/opencv.hpp>

using namespace cv;

class RoadThresholderIface
{
	public:
		virtual void process_image(const Mat& img)=0;
		virtual Mat& get_road()=0;
};


#endif