![]() |
retinify 0.1.4
Real-Time AI Stereo Vision Library
|
This class provides an interface for running a stereo matching pipeline using OpenCV. More...
#include <pipeline.hpp>
Public Member Functions | |
StereoMatchingPipeline () noexcept=default | |
~StereoMatchingPipeline () noexcept=default | |
StereoMatchingPipeline (const StereoMatchingPipeline &)=delete | |
auto | operator= (const StereoMatchingPipeline &) noexcept -> StereoMatchingPipeline &=delete |
StereoMatchingPipeline (StereoMatchingPipeline &&)=delete | |
auto | operator= (StereoMatchingPipeline &&other) noexcept -> StereoMatchingPipeline &=delete |
auto | Initialize (Mode mode=Mode::ACCURATE) noexcept -> Status |
Initializes the stereo matching pipeline with the specified processing mode. | |
auto | Run (const cv::Mat &leftImage, const cv::Mat &rightImage, cv::Mat &disparity) noexcept -> Status |
Runs the stereo matching pipeline. | |
auto | RunWithLeftRightConsistencyCheck (const cv::Mat &leftImage, const cv::Mat &rightImage, cv::Mat &disparity, float maxDisparityDifference=1.0F) noexcept -> Status |
Runs the stereo matching pipeline with left-right consistency check on the provided images. | |
This class provides an interface for running a stereo matching pipeline using OpenCV.
|
defaultnoexcept |
|
defaultnoexcept |
|
delete |
|
delete |
|
noexcept |
Initializes the stereo matching pipeline with the specified processing mode.
mode | The processing mode to use for the stereo matching pipeline. |
|
deletenoexcept |
|
deletenoexcept |
|
noexcept |
Runs the stereo matching pipeline.
leftImage | The left input image as a cv::Mat . |
rightImage | The right input image as a cv::Mat . |
disparity | The output disparity map as a cv::Mat . |
|
noexcept |
Runs the stereo matching pipeline with left-right consistency check on the provided images.
leftImage | The left input image as a cv::Mat . |
rightImage | The right input image as a cv::Mat . |
disparity | The output disparity map as a cv::Mat . |
maxDisparityDifference | Maximum allowed disparity difference for left-right consistency check. If the value is less than or equal to 0, the check will be skipped. |