psychopath/sub_crates/spectral_upsampling/Cargo.toml
Nathan Vegdahl 48e015996f Initial implementation of Jakob 2019 spectral upsampling.
It has a slight color cast to it at the moment, I believe due to
incorrect color space conversions, not because of the upsampling
method itself.  So Meng upsampling is still the active method
at the moment.
2019-06-09 19:51:43 +09:00

17 lines
299 B
TOML

[package]
name = "spectral_upsampling"
version = "0.1.0"
authors = ["Nathan Vegdahl <cessen@cessen.com>"]
edition = "2018"
license = "MIT"
[lib]
name = "spectral_upsampling"
path = "src/lib.rs"
[dependencies]
lazy_static = "1.0"
# Local crate dependencies
[dependencies.float4]
path = "../float4"