#include <flirReader.hpp>
FlirReader is an abstract class to extract frames from a FLIR stereo-camera system. Its interface imitates the cv::VideoCapture class, so it can be used quite similarly to the cv::VideoCapture class. Thus, it is quite similar to VideoReader and WebcamReader.
Definition at line 15 of file flirReader.hpp.
◆ FlirReader()
op::FlirReader::FlirReader |
( |
const std::string & |
cameraParametersPath, |
|
|
const Point< int > & |
cameraResolution, |
|
|
const bool |
undistortImage = true , |
|
|
const int |
cameraIndex = -1 |
|
) |
| |
|
explicit |
Constructor of FlirReader. It opens all the available FLIR cameras
◆ ~FlirReader()
virtual op::FlirReader::~FlirReader |
( |
| ) |
|
|
virtual |
◆ get()
double op::FlirReader::get |
( |
const int |
capProperty | ) |
|
|
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.
- Parameters
-
capProperty | int indicating the property to be modified. |
- Returns
- double returning the property value.
Implements op::Producer.
◆ getCameraExtrinsics()
std::vector<Matrix> op::FlirReader::getCameraExtrinsics |
( |
| ) |
|
|
virtual |
It retrieves and returns the camera extrinsic parameters from the frames producer. Virtual class because FlirReader implements their own.
- Returns
- std::vector<Mat> with the camera extrinsic parameters.
Reimplemented from op::Producer.
◆ getCameraIntrinsics()
std::vector<Matrix> op::FlirReader::getCameraIntrinsics |
( |
| ) |
|
|
virtual |
It retrieves and returns the camera intrinsic parameters from the frames producer. Virtual class because FlirReader implements their own.
- Returns
- std::vector<Mat> with the camera intrinsic parameters.
Reimplemented from op::Producer.
◆ getCameraMatrices()
std::vector<Matrix> op::FlirReader::getCameraMatrices |
( |
| ) |
|
|
virtual |
It retrieves and returns the camera matrixes from the frames producer. Virtual class because FlirReader implements their own.
- Returns
- std::vector<Mat> with the camera matrices.
Reimplemented from op::Producer.
◆ getNextFrameName()
std::string op::FlirReader::getNextFrameName |
( |
| ) |
|
|
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.).
- Returns
- std::string with an unique frame name.
Implements op::Producer.
◆ isOpened()
bool op::FlirReader::isOpened |
( |
| ) |
const |
|
virtual |
This function returns whether the Producer instance is still opened and able to retrieve more frames.
- Returns
- bool indicating whether the Producer is opened.
Implements op::Producer.
◆ release()
void op::FlirReader::release |
( |
| ) |
|
|
virtual |
◆ set()
void op::FlirReader::set |
( |
const int |
capProperty, |
|
|
const double |
value |
|
) |
| |
|
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.
- Parameters
-
capProperty | int indicating the property to be modified. |
value | double indicating the new value to be assigned. |
Implements op::Producer.
The documentation for this class was generated from the following file: