OpenCV453
クラス | 名前空間 | 関数
white_balance.hpp ファイル
#include <opencv2/core.hpp>

[ソースコード]

クラス

class  cv::xphoto::WhiteBalancer
 The base class for auto white balance algorithms. [詳解]
 
class  cv::xphoto::SimpleWB
 A simple white balance algorithm that works by independently stretching each of the input image channels to the specified range. For increased robustness it ignores the top and bottom $p\%$ of pixel values. [詳解]
 
class  cv::xphoto::GrayworldWB
 Gray-world white balance algorithm [詳解]
 
class  cv::xphoto::LearningBasedWB
 More sophisticated learning-based automatic white balance algorithm. [詳解]
 

名前空間

namespace  cv
 "black box" representation of the file storage associated with a file on disk.
 

関数

CV_EXPORTS_W Ptr< SimpleWB > cv::xphoto::createSimpleWB ()
 Creates an instance of SimpleWB
 
CV_EXPORTS_W Ptr< GrayworldWB > cv::xphoto::createGrayworldWB ()
 Creates an instance of GrayworldWB
 
CV_EXPORTS_W Ptr< LearningBasedWB > cv::xphoto::createLearningBasedWB (const String &path_to_model=String())
 Creates an instance of LearningBasedWB [詳解]
 
CV_EXPORTS_W void cv::xphoto::applyChannelGains (InputArray src, OutputArray dst, float gainB, float gainG, float gainR)
 Implements an efficient fixed-point approximation for applying channel gains, which is the last step of multiple white balance algorithms. [詳解]
 

詳解

日付
Jun 26, 2014
著者
Yury Gitman