Expand description
Uniform noise codec implementation for the numcodecs
API.
Structs§
- Uniform
Noise Codec - Codec that adds
seed
ed$\text{U}(-0.5 \cdot scale, 0.5 \cdot scale)$
uniform noise of the givenscale
during encoding and passes through the input unchanged during decoding.
Enums§
- Uniform
Noise Codec Error - Errors that may occur when applying the
UniformNoiseCodec
.
Traits§
- Float
Ext - Floating point types
Functions§
- add_
uniform_ noise - Adds
$\text{U}(-0.5 \cdot scale, 0.5 \cdot scale)$
uniform random noise to the inputdata
.