OpenPose  1.7.0
The first real-time multi-person system to jointly detect human body, hand, facial, and foot keypoints
ipCameraReader.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_PRODUCER_IP_CAMERA_READER_HPP
2 #define OPENPOSE_PRODUCER_IP_CAMERA_READER_HPP
3 
6 
7 namespace op
8 {
13  {
14  public:
19  explicit IpCameraReader(const std::string& cameraPath, const std::string& cameraParameterPath = "",
20  const bool undistortImage = false);
21 
22  virtual ~IpCameraReader();
23 
24  std::string getNextFrameName();
25 
26  inline bool isOpened() const
27  {
29  }
30 
31  inline double get(const int capProperty)
32  {
33  return VideoCaptureReader::get(capProperty);
34  }
35 
36  inline void set(const int capProperty, const double value)
37  {
38  VideoCaptureReader::set(capProperty, value);
39  }
40 
41  private:
42  const std::string mPathName;
43 
44  Matrix getRawFrame();
45 
46  std::vector<Matrix> getRawFrames();
47 
49  };
50 }
51 
52 #endif // OPENPOSE_PRODUCER_IP_CAMERA_READER_HPP
std::string getNextFrameName()
double get(const int capProperty)
void set(const int capProperty, const double value)
bool isOpened() const
virtual ~IpCameraReader()
IpCameraReader(const std::string &cameraPath, const std::string &cameraParameterPath="", const bool undistortImage=false)
virtual double get(const int capProperty)=0
virtual bool isOpened() const
virtual void set(const int capProperty, const double value)=0
#define OP_API
Definition: macros.hpp:18
#define DELETE_COPY(className)
Definition: macros.hpp:32