OpenCV 4.10.0
开源计算机视觉
|
函数 | |
void | autoscaling (const Mat input, Mat &output) |
给定输入的 bgr 或灰度图像,在 [0, 255] 域上应用自动对比度调节以提高输入图像的对比度,并返回处理后的结果图像。 | |
void | BIMEF (InputArray input, OutputArray output, float k, float mu, float a, float b) |
给定输入的彩色图像,使用 BIMEF 方法增强暗光图像 ([309] [310])。 | |
void | BIMEF (InputArray input, OutputArray output, float mu=0.5f, float a=-0.3293f, float b=1.1258f) |
给定输入的彩色图像,使用 BIMEF 方法增强暗光图像 ([309] [310])。 | |
void | contrastStretching (const Mat input, Mat &output, const int r1, const int s1, const int r2, const int s2) |
给定输入的 bgr 或灰度图像,在 [0, 255] 域上应用线性对比度拉伸并返回处理后的结果图像。 | |
void | gammaCorrection (const Mat input, Mat &output, const float gamma) |
给定输入的 bgr 或灰度图像以及常数 Gamma,在 [0, 255] 域上对图像应用幂律变换,即 Gamma 校正并返回处理后的结果图像。 | |
void | logTransform (const Mat input, Mat &output) |
给定输入的 bgr 或灰度图像以及常数 c,在 [0, 255] 域上对图像应用对数变换并返回处理后的结果图像。 | |