libVision  1.0
A vision library made by FRC team #4529
Viewer.h
Go to the documentation of this file.
1 #ifndef VIEWER_H
2 #define VIEWER_H
3 
11 #include <opencv2/highgui/highgui.hpp>
12 
13 using namespace cv;
14 
20 class Viewer : public Mat {
21 public:
26  Viewer();
31  Viewer(std::string winName);
37  Viewer(const Mat &orig, std::string winName);
41  virtual ~Viewer();
46  void update();
50  const std::string name;
51  using Mat::operator=;
52 
53 private:
54 
55 };
56 
57 #endif /* VIEWER_H */
58 
const std::string name
Read-only window name.
Definition: Viewer.h:50
Viewer class.
Definition: Viewer.h:20