libVision  1.0
A vision library made by FRC team #4529
CamFeed.h
Go to the documentation of this file.
1 #ifndef CAMFEED_H
2 #define CAMFEED_H
3 
9 #include <opencv2/highgui/highgui.hpp>
10 
11 using namespace cv;
12 
17 class CamFeed : public VideoCapture {
18 public:
29  CamFeed(const char * feedPath);
34  CamFeed(int camIndex);
36  virtual ~CamFeed();
37 };
38 
39 #endif /* CAMFEED_H */
40 
Camera/URI feed.
Definition: CamFeed.h:17