OpenCV 4.12.0
开源计算机视觉
加载中...
搜索中...
无匹配项
cv::intensity_transform 命名空间参考

函数

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 方法增强低光照图像([312] [313])。
 
void BIMEF (InputArray input, OutputArray output, float mu=0.5f, float a=-0.3293f, float b=1.1258f)
 给定一个输入彩色图像,使用 BIMEF 方法增强低光照图像([312] [313])。
 
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] 范围内应用对数变换,并返回结果图像。