Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Stockner <lukas.stockner@freenet.de>2017-05-08 23:09:35 +0300
committerLukas Stockner <lukas.stockner@freenet.de>2017-05-11 04:21:54 +0300
commit58a0c275464605ccff18a56c4d82b619df069e91 (patch)
treefca5fe54a9de602fcd116c1b62e685915400d573 /intern/cycles/blender/addon
parentf4b7c33c1a7121c7bb20c2eeee9160bc4a270020 (diff)
Cycles: Fix occasional black pixels from denoising with excessive radii
Numerical inaccuracies would cause the XtWX matrix to be no longer positive-semidefinite, which in turn caused the LSQ solver to fail.
Diffstat (limited to 'intern/cycles/blender/addon')
-rw-r--r--intern/cycles/blender/addon/properties.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 70f704894bb..51b53a43d0b 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -1255,7 +1255,7 @@ class CyclesRenderLayerSettings(bpy.types.PropertyGroup):
cls.denoising_radius = IntProperty(
name="Denoising Radius",
description="Size of the image area that's used to denoise a pixel (higher values are smoother, but might lose detail and are slower)",
- min=1, max=50,
+ min=1, max=25,
default=8,
)
cls.denoising_relative_pca = BoolProperty(