OpenPose
1.7.0
The first real-time multi-person system to jointly detect human body, hand, facial, and foot keypoints
|
#include <webcamReader.hpp>
Public Member Functions | |
WebcamReader (const int webcamIndex=0, const Point< int > &webcamResolution=Point< int >{}, const bool throwExceptionIfNoOpened=true, const std::string &cameraParameterPath="", const bool undistortImage=false) | |
virtual | ~WebcamReader () |
std::string | getNextFrameName () |
bool | isOpened () const |
double | get (const int capProperty) |
void | set (const int capProperty, const double value) |
Public Member Functions inherited from op::VideoCaptureReader | |
VideoCaptureReader (const int index, const bool throwExceptionIfNoOpened, const std::string &cameraParameterPath, const bool undistortImage, const int numberViews) | |
VideoCaptureReader (const std::string &path, const ProducerType producerType, const std::string &cameraParameterPath, const bool undistortImage, const int numberViews) | |
virtual | ~VideoCaptureReader () |
void | release () |
Public Member Functions inherited from op::Producer | |
Producer (const ProducerType type, const std::string &cameraParameterPath, const bool undistortImage, const int mNumberViews) | |
virtual | ~Producer () |
Matrix | getFrame () |
std::vector< Matrix > | getFrames () |
virtual std::vector< Matrix > | getCameraMatrices () |
virtual std::vector< Matrix > | getCameraExtrinsics () |
virtual std::vector< Matrix > | getCameraIntrinsics () |
void | setProducerFpsMode (const ProducerFpsMode fpsMode) |
ProducerType | getType () |
double | get (const ProducerProperty property) |
void | set (const ProducerProperty property, const double value) |
Additional Inherited Members | |
Protected Member Functions inherited from op::VideoCaptureReader | |
void | resetWebcam (const int index, const bool throwExceptionIfNoOpened) |
Protected Member Functions inherited from op::Producer | |
void | checkFrameIntegrity (Matrix &frame) |
void | ifEndedResetOrRelease () |
void | keepDesiredFrameRate () |
WebcamReader is a wrapper of the cv::VideoCapture class for webcam. It allows controlling a video (extracting frames, setting resolution & fps, seeking to a particular frame, etc).
Definition at line 15 of file webcamReader.hpp.
|
explicit |
Constructor of WebcamReader. It opens the webcam as a wrapper of cv::VideoCapture. It includes an argument to indicate the desired resolution.
webcamIndex | const int indicating the camera source (see the OpenCV documentation about cv::VideoCapture for more details), in the range [0, 9]. |
webcamResolution | const Point<int> parameter which specifies the desired camera resolution. |
throwExceptionIfNoOpened | Bool parameter which specifies whether to throw an exception if the camera cannot be opened. |
|
virtual |
|
virtual |
This function is a wrapper of cv::VideoCapture::get. It allows getting different properties of the Producer (fps, width, height, etc.). See the OpenCV documentation for all the available properties.
capProperty | int indicating the property to be modified. |
Implements op::VideoCaptureReader.
|
virtual |
This function returns a unique frame name (e.g., the frame number for video, the frame counter for webcam, the image name for image directory reader, etc.).
Implements op::VideoCaptureReader.
|
virtual |
This function returns whether the Producer instance is still opened and able to retrieve more frames.
Reimplemented from op::VideoCaptureReader.
|
virtual |
This function is a wrapper of cv::VideoCapture::set. It allows setting different properties of the Producer (fps, width, height, etc.). See the OpenCV documentation for all the available properties.
capProperty | int indicating the property to be modified. |
value | double indicating the new value to be assigned. |
Implements op::VideoCaptureReader.