1个不稳定版本
0.1.0 | 2024年6月17日 |
---|
#286 in 压缩
17KB
357 行
AZTEC
基于: https://ieeexplore.ieee.org/document/4502549 的压缩算法
每行/斜率使用3个字节,这意味着在最坏的情况下,压缩数据将是原始数据的1.5倍。
用法
const THRESHOLD: u16 = 50;
let config = AztecConfigBuilder::new(THRESHOLD)
.max_slope_line_len(4)
.build()
.expect("Invalid Config");