OpenCV  3.2.0-dev
Open Source Computer Vision
cv::detail::BlocksGainCompensator Class Reference

Exposure compensator which tries to remove exposure related artifacts by adjusting image block intensities, see [83] for details. More...

#include "exposure_compensate.hpp"

Inheritance diagram for cv::detail::BlocksGainCompensator:
Collaboration diagram for cv::detail::BlocksGainCompensator:

Public Types

enum  {
  NO,
  GAIN,
  GAIN_BLOCKS
}
 

Public Member Functions

 BlocksGainCompensator (int bl_width=32, int bl_height=32)
 
void apply (int index, Point corner, InputOutputArray image, InputArray mask)
 Compensate exposure in the specified image. More...
 
void feed (const std::vector< Point > &corners, const std::vector< UMat > &images, const std::vector< UMat > &masks)
 
void feed (const std::vector< Point > &corners, const std::vector< UMat > &images, const std::vector< std::pair< UMat, uchar > > &masks)
 

Static Public Member Functions

static Ptr< ExposureCompensatorcreateDefault (int type)
 

Detailed Description

Exposure compensator which tries to remove exposure related artifacts by adjusting image block intensities, see [83] for details.

Member Enumeration Documentation

anonymous enum
inherited
Enumerator
NO 
GAIN 
GAIN_BLOCKS 

Constructor & Destructor Documentation

cv::detail::BlocksGainCompensator::BlocksGainCompensator ( int  bl_width = 32,
int  bl_height = 32 
)
inline

Member Function Documentation

void cv::detail::BlocksGainCompensator::apply ( int  index,
Point  corner,
InputOutputArray  image,
InputArray  mask 
)
virtual

Compensate exposure in the specified image.

Parameters
indexImage index
cornerImage top-left corner
imageImage to process
maskImage mask

Implements cv::detail::ExposureCompensator.

static Ptr<ExposureCompensator> cv::detail::ExposureCompensator::createDefault ( int  type)
staticinherited
void cv::detail::ExposureCompensator::feed ( const std::vector< Point > &  corners,
const std::vector< UMat > &  images,
const std::vector< UMat > &  masks 
)
inherited
Parameters
cornersSource image top-left corners
imagesSource images
masksImage masks to update (second value in pair specifies the value which should be used to detect where image is)
void cv::detail::BlocksGainCompensator::feed ( const std::vector< Point > &  corners,
const std::vector< UMat > &  images,
const std::vector< std::pair< UMat, uchar > > &  masks 
)
virtual

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Implements cv::detail::ExposureCompensator.


The documentation for this class was generated from the following file: