Common LUT Format (CLF) parser
https://docs.acescentral.com/specifications/clf
Supported features
Operators
- LUT1D
- LUT3D
- Range
Bit depths
32F
Usage
Add this to your Cargo.toml:
[]
= "0.1.0"
https://docs.acescentral.com/specifications/clf
32F
Add this to your Cargo.toml:
[dependencies]
clf-parser = "0.1.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(())
}