4个版本 (2个重大更新)
0.3.1 | 2022年1月23日 |
---|---|
0.3.0 | 2022年1月23日 |
0.2.0 | 2022年1月16日 |
0.1.0 | 2022年1月14日 |
#673 在 图像
15KB
229 行
agcwd
AGCWD算法的Rust实现。
AGCWD在论文《使用自适应伽马校正和加权分布的对比度增强》中有所描述。"Efficient Contrast Enhancement Using Adaptive Gamma Correction With Weighting Distribution".
这里 是实时增强相机图像的演示。
示例
Rust代码片段用于增强RGB图像
// An example image containing 2 RGB pixels.
let mut pixels = vec![0, 1, 2, 3, 4, 5];
let agcwd = agcwd::Agcwd::new(0.5);
agcwd.enhance_rgb_image(&mut pixels);
您可以通过执行以下命令将AGCWD应用于PNG图像
$ cargo run --example enhance-png /path/to/image.png --output-path