2个不稳定版本
0.2.0 | 2023年11月27日 |
---|---|
0.1.0 | 2023年11月24日 |
#2186 in 解析器实现
129 每月下载量
12KB
260 行
通用查找表格式(CLF)解析器
https://docs.acescentral.com/specifications/clf
支持的功能
操作符
- LUT1D
- LUT3D
- 范围
位深度
32F
用法
将此添加到您的Cargo.toml
[dependencies]
clf-parser = "0.2.0"
fn main() -> anyhow::Result<()> {
let reader = std::fs::OpenOptions::new().read(true).open("my_file.clf")?;
let clf = clf_parser::load_clf(reader)?;
Ok(())
}
依赖项
~1–1.8MB
~39K SLoC