OpenCV
3.0.0
Open Source Computer Vision
|
Enumerations | |
enum | InpaintTypes { INPAINT_SHIFTMAP = 0 } |
various inpainting algorithms More... | |
enum | WhitebalanceTypes { WHITE_BALANCE_SIMPLE = 0, WHITE_BALANCE_GRAYWORLD = 1 } |
various white balance algorithms More... | |
Functions | |
void | balanceWhite (const Mat &src, Mat &dst, const int algorithmType, const float inputMin=0.0f, const float inputMax=255.0f, const float outputMin=0.0f, const float outputMax=255.0f) |
The function implements different algorithm of automatic white balance,. More... | |
void | dctDenoising (const Mat &src, Mat &dst, const double sigma, const int psize=16) |
The function implements simple dct-based denoising. More... | |
void | inpaint (const Mat &src, const Mat &mask, Mat &dst, const int algorithmType) |
The function implements different single-image inpainting algorithms. More... | |