kNOw SIGN
FrameGen.hpp
Go to the documentation of this file.
1 #ifndef _MYIMAGE_
2 #define _MYIMAGE_
3 
4 #include <opencv2/imgproc/imgproc.hpp>
5 #include <opencv2/opencv.hpp>
6 #include <vector>
7 
14 class FrameGen{
15  public:
16  FrameGen(int Camera);
17  FrameGen(cv::Mat &src);
18  FrameGen();
19  cv::Mat srcLR;
20 
21  cv::Mat src;
22  cv::Mat bw;
23  std::vector<cv::Mat> bwList;
24  cv::VideoCapture cap;
25  int cameraSrc;
26  void Camera(int i);
27 };
28 
29 
30 
31 #endif
void Camera(int i)
std::vector< cv::Mat > bwList
Definition: FrameGen.hpp:23
cv::Mat bw
Definition: FrameGen.hpp:22
FrameGen()
capture frames from camera module
Definition: FrameGen.cpp:15
int cameraSrc
Definition: FrameGen.hpp:25
cv::Mat srcLR
Definition: FrameGen.hpp:19
cv::Mat src
Definition: FrameGen.hpp:21
cv::VideoCapture cap
Definition: FrameGen.hpp:24
Class for video capturing from camera module. It takes the frames from the camera and passes it to ot...
Definition: FrameGen.hpp:14