4 个版本 (破坏性更改)
使用旧的 Rust 2015
0.4.0 | 2020 年 12 月 1 日 |
---|---|
0.3.0 | 2020 年 11 月 30 日 |
0.2.0 | 2020 年 11 月 29 日 |
0.1.0 | 2020 年 11 月 29 日 |
#811 in 图像
29KB
729 行
white-balancer
Rust 实现流行的自动白平衡方法。
用法
这是一个如何应用所有实现方法的示例
$ cargo run -- -i example.jpg -a
Auto white balancing:
Input: example.jpg (1920x1080)
Output: gray-world -> example-gray-world.jpg
Output: retinex -> example-retinex.jpg
Output: gray-retinex -> example-gray-retinex.jpg
或者仅针对灰度世界方法
$ cargo run -- -i example.jpg -m gray-world
Auto white balancing:
Input: example.jpg (1920x1080)
Output: gray-world -> example-gray-world.jpg
有关当前接受的参数的更多信息
$ cargo run -- -h
Automatic white balance for images
USAGE:
white-balancer [FLAGS] [OPTIONS] --input <input>
FLAGS:
-a, --all use all methods
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-m, --auto <auto> white balancing auto
-i, --input <input> input image filename
-o, --output <output> output image filename
依赖项
~9MB
~134K SLoC