OpenCV 4.11.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方法增强低光图像 ([310] [311])。 | |
void | BIMEF (InputArray input, OutputArray output, float mu=0.5f, float a=-0.3293f, float b=1.1258f) |
给定一个输入彩色图像,使用BIMEF方法增强低光图像 ([310] [311])。 | |
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]区间上对图像应用幂律变换(又称伽马校正),并返回结果图像。 | |
void | logTransform (const Mat input, Mat &output) |
给定一个输入的BGR或灰度图像和常数c,在[0, 255]区间上对图像应用对数变换,并返回结果图像。 | |