OpenCV
4.0.0-beta
Open Source Computer Vision
|
Base class for all exposure compensators. More...
#include "exposure_compensate.hpp"
Public Types | |
enum | { NO, GAIN, GAIN_BLOCKS } |
Public Member Functions | |
virtual | ~ExposureCompensator () |
virtual void | apply (int index, Point corner, InputOutputArray image, InputArray mask)=0 |
Compensate exposure in the specified image. More... | |
void | feed (const std::vector< Point > &corners, const std::vector< UMat > &images, const std::vector< UMat > &masks) |
virtual void | feed (const std::vector< Point > &corners, const std::vector< UMat > &images, const std::vector< std::pair< UMat, uchar > > &masks)=0 |
Static Public Member Functions | |
static Ptr< ExposureCompensator > | createDefault (int type) |
Base class for all exposure compensators.
|
inlinevirtual |
|
pure virtual |
Compensate exposure in the specified image.
index | Image index |
corner | Image top-left corner |
image | Image to process |
mask | Image mask |
Implemented in cv::detail::BlocksGainCompensator, cv::detail::GainCompensator, and cv::detail::NoExposureCompensator.
|
static |
void cv::detail::ExposureCompensator::feed | ( | const std::vector< Point > & | corners, |
const std::vector< UMat > & | images, | ||
const std::vector< UMat > & | masks | ||
) |
corners | Source image top-left corners |
images | Source images |
masks | Image masks to update (second value in pair specifies the value which should be used to detect where image is) |
|
pure virtual |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Implemented in cv::detail::BlocksGainCompensator, cv::detail::GainCompensator, and cv::detail::NoExposureCompensator.