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.
17 lines
299 B
TOML
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" |