parent
508092ac23
commit
ba0b4023c2
7 changed files with 114 additions and 189 deletions
@ -1,94 +0,0 @@ |
|||||||
/*M///////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
//
|
|
||||||
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
|
|
||||||
//
|
|
||||||
// By downloading, copying, installing or using the software you agree to this license.
|
|
||||||
// If you do not agree to this license, do not download, install,
|
|
||||||
// copy or use the software.
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// License Agreement
|
|
||||||
// For Open Source Computer Vision Library
|
|
||||||
//
|
|
||||||
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
|
|
||||||
// Copyright (C) 2009-2011, Willow Garage Inc., all rights reserved.
|
|
||||||
// Third party copyrights are property of their respective owners.
|
|
||||||
//
|
|
||||||
// Redistribution and use in source and binary forms, with or without modification,
|
|
||||||
// are permitted provided that the following conditions are met:
|
|
||||||
//
|
|
||||||
// * Redistribution's of source code must retain the above copyright notice,
|
|
||||||
// this list of conditions and the following disclaimer.
|
|
||||||
//
|
|
||||||
// * Redistribution's in binary form must reproduce the above copyright notice,
|
|
||||||
// this list of conditions and the following disclaimer in the documentation
|
|
||||||
// and/or other materials provided with the distribution.
|
|
||||||
//
|
|
||||||
// * The name of the copyright holders may not be used to endorse or promote products
|
|
||||||
// derived from this software without specific prior written permission.
|
|
||||||
//
|
|
||||||
// This software is provided by the copyright holders and contributors "as is" and
|
|
||||||
// any express or implied warranties, including, but not limited to, the implied
|
|
||||||
// warranties of merchantability and fitness for a particular purpose are disclaimed.
|
|
||||||
// In no event shall the Intel Corporation or contributors be liable for any direct,
|
|
||||||
// indirect, incidental, special, exemplary, or consequential damages
|
|
||||||
// (including, but not limited to, procurement of substitute goods or services;
|
|
||||||
// loss of use, data, or profits; or business interruption) however caused
|
|
||||||
// and on any theory of liability, whether in contract, strict liability,
|
|
||||||
// or tort (including negligence or otherwise) arising in any way out of
|
|
||||||
// the use of this software, even if advised of the possibility of such damage.
|
|
||||||
//
|
|
||||||
//M*/
|
|
||||||
|
|
||||||
#ifndef __OPENCV_GRAYWORLD_WHITE_BALANCE_HPP__ |
|
||||||
#define __OPENCV_GRAYWORLD_WHITE_BALANCE_HPP__ |
|
||||||
|
|
||||||
/** @file
|
|
||||||
@date Jun 3, 2015 |
|
||||||
@author Seon-Wook Park |
|
||||||
*/ |
|
||||||
|
|
||||||
#include <opencv2/core.hpp> |
|
||||||
|
|
||||||
namespace cv { namespace xphoto { |
|
||||||
|
|
||||||
//! @addtogroup xphoto
|
|
||||||
//! @{
|
|
||||||
|
|
||||||
/** @brief Implements a simple grayworld white balance algorithm.
|
|
||||||
|
|
||||||
The function autowbGrayworld scales the values of pixels based on a |
|
||||||
gray-world assumption which states that the average of all channels |
|
||||||
should result in a gray image. |
|
||||||
|
|
||||||
This function adds a modification which thresholds pixels based on their |
|
||||||
saturation value and only uses pixels below the provided threshold in |
|
||||||
finding average pixel values. |
|
||||||
|
|
||||||
Saturation is calculated using the following for a 3-channel RGB image per |
|
||||||
pixel I and is in the range [0, 1]: |
|
||||||
|
|
||||||
\f[ \texttt{Saturation} [I] = \frac{\textrm{max}(R,G,B) - \textrm{min}(R,G,B) |
|
||||||
}{\textrm{max}(R,G,B)} \f] |
|
||||||
|
|
||||||
A threshold of 1 means that all pixels are used to white-balance, while a |
|
||||||
threshold of 0 means no pixels are used. Lower thresholds are useful in |
|
||||||
white-balancing saturated images. |
|
||||||
|
|
||||||
Currently only works on images of type @ref CV_8UC3. |
|
||||||
|
|
||||||
@param src Input array. |
|
||||||
@param dst Output array of the same size and type as src. |
|
||||||
@param thresh Maximum saturation for a pixel to be included in the |
|
||||||
gray-world assumption. |
|
||||||
|
|
||||||
@sa balanceWhite |
|
||||||
*/ |
|
||||||
CV_EXPORTS_W void autowbGrayworld(InputArray src, OutputArray dst, |
|
||||||
const float thresh = 0.5f); |
|
||||||
|
|
||||||
//! @}
|
|
||||||
|
|
||||||
}} |
|
||||||
|
|
||||||
#endif // __OPENCV_GRAYWORLD_WHITE_BALANCE_HPP__
|
|
Loading…
Reference in new issue