Changelog:
- 1.4.1:
- Fixed crash when in-place denoising images with certain unusual resolutions.
- 1.4.0:
- Improved fine detail preservation.
- Added the cleanAux filter parameter for further improving quality when the auxiliary feature (albedo, normal) images are noise-free.
- Added support for denoising auxiliary feature images, which can be used together with the new cleanAux parameter for improving quality when the auxiliary images are noisy (recommended for final frame denoising).
- Normals are expected to be in the [-1, 1] range (but still do not have to be normalized).
- Added the oidnUpdateFilterData function which must be called when the contents of an opaque data parameter bound to a filter (e.g. weights) has been changed after committing the filter.
- Added the oidnRemoveFilterImage and oidnRemoveFilterData functions for removing previously set image and opaque data parameters of filters.
- Reduced the overhead of oidnCommitFilter to zero in some cases (e.g. when changing already set image buffers/pointers or the inputScale parameter).
- Reduced filter memory consumption by about 35%.
- Reduced total memory consumption significantly when using multiple filters that belong to the same device.
- Reduced the default maximum memory consumption to 3000 MB.
- Added the OIDN_FILTER_RT and OIDN_FILTER_RTLIGHTMAP CMake options for excluding the trained filter weights from the build to significantly decrease its size.
- Fixed compile error when using future glibc versions.
- Added oidnBenchmark option for setting custom resolutions.
- 1.3.0:
- Improved denoising quality.
- Improved sharpness of fine details / less blurriness.
- Fewer noisy artifacts.
- Slightly improved performance and lowered memory consumption.
- Added directional (e.g. spherical harmonics) lightmap denoising to the RTLightmap filter.
- Added inputScale filter parameter which generalizes the existing (and thus now deprecated) hdrScale parameter for non-HDR images.
- Added OIDN_NEURAL_RUNTIME CMake option for setting the neural network runtime library.
- Reduced the size of the library binary.
- Upgraded release builds to use oneTBB 2021.1.1.
- Removed tbbmalloc dependency.
- Appended the library version to the name of the directory containing the installed CMake files.
- Faster training performance.
- Added mixed precision training (enabled by default).
- Added efficient data-parallel training on multiple GPUs.
- Enabled preprocessing datasets multiple times with possibly different options.
- Minor bugfixes.
Signed-off-by: Martin Reboredo <yakoyoku@gmail.com>