23 lines
433 B
C++
Executable File
23 lines
433 B
C++
Executable File
/*
|
|
* RectangleTracker.h
|
|
*
|
|
* Created on: Apr 29, 2018
|
|
* Author: yunya
|
|
*/
|
|
|
|
#ifndef RECTANGLE_RECTANGLETRACKER_H_
|
|
#define RECTANGLE_RECTANGLETRACKER_H_
|
|
#include <opencv2/core/utility.hpp>
|
|
#include <opencv2/videoio.hpp>
|
|
#include <opencv2/highgui.hpp>
|
|
#include <iostream>
|
|
|
|
class RectangleTracker {
|
|
|
|
public:
|
|
RectangleTracker();
|
|
virtual ~RectangleTracker();
|
|
};
|
|
|
|
#endif /* RECTANGLE_RECTANGLETRACKER_H_ */
|