|
void | cv::intensity_transform::autoscaling (const Mat input, Mat &output) |
| 给定输入的 bgr 或灰度图像,在域 [0, 255] 上应用自动比例调整以增加输入图像的对比度并返回生成图像。
|
|
void | cv::intensity_transform::BIMEF (InputArray input, OutputArray output, float k, float mu, float a, float b) |
| 给定输入彩色图像,使用 BIMEF 方法增强弱光图像 ([309] [310]).
|
|
void | cv::intensity_transform::BIMEF (InputArray input, OutputArray output, float mu=0.5f, float a=-0.3293f, float b=1.1258f) |
| 给定输入彩色图像,使用 BIMEF 方法增强弱光图像 ([309] [310]).
|
|
void | cv::intensity_transform::contrastStretching (const Mat input, Mat &output, const int r1, const int s1, const int r2, const int s2) |
| 给定输入的 bgr 或灰度图像,在域 [0, 255] 上应用线性对比度拉伸并返回生成的图像。
|
|
void | cv::intensity_transform::gammaCorrection (const Mat input, Mat &output, const float gamma) |
| 给定输入的 bgr 或灰度图像和常数 gamma,对域 [0, 255] 上的图像应用幂律变换,又称伽马校正,并返回生成图像。
|
|
void | cv::intensity_transform::logTransform (const Mat input, Mat &output) |
| 给出输入的 bgr 或灰度图像和常量 c,针对域 [0, 255] 中的图像运用对数变换,并返回结果图像。
|
|