10个版本
0.2.0 | 2021年9月10日 |
---|---|
0.1.1 | 2021年9月9日 |
0.0.7 | 2021年9月7日 |
669在图像
每月下载量35次
34KB
914 代码行
asdf-pixel-sort
Rust实现的像素排序算法"ASDF",由Kim Asendorf提供。
用法
asdf-pixel-sort = "0.2.0"
示例
use asdf_pixel_sort::sort;
fn main() {
let img = image::open("pic.jpg").unwrap();
let mut buf = img.to_rgb8();
sort(&mut buf);
buf.save("sorted.jpg").unwrap();
}
运行上述代码可能还需要image
crate。
使用sort_with_options()
函数进行配置。
let color = PColor::new(0, 62, 214);
let options = Options {
mode: Mode::Black(color),
};
sort_with_options(&mut buf, &options);
文档
请参阅docs.rs上的文档。
变更日志
请参阅GitHub上的发布页面。
许可证
MIT
作者
Yuki Kodama / @kuy
依赖关系
~10MB
~31K SLoC