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>2019-02-06 14:57:10 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-02-11 15:32:54 +0300
commitc10f5d15c25cbc5ee319835c90d5d2a4dda53497 (patch)
tree053fb40f47cdab5b42ed7f4ab40421c6317e8324 /intern/cycles/blender/addon/__init__.py
parent382fe85e293e3d00bd7e494bd270cd32bec8ecb6 (diff)
Cycles: add animation denoising Python operator.
This adds a cycles.denoise_animation operator, which denoises an animation sequence or individual file. Renders must be saved as multilayer EXR files with denoising data passes. By default file path and frame range come from the current scene, and EXR files are denoised in-place. Alternatively, a different input and/or output file path can be provided. Denoising settings come from the current view layer. Renders can be denoised again with different settings, as the original noisy image is preserved along with other passes and metadata. There is no user interface yet for this feature, that comes later. Code by Lukas with modifications by Brecht. This feature was originally developed for Tangent Animation, thanks for the support!
Diffstat (limited to 'intern/cycles/blender/addon/__init__.py')
-rw-r--r--intern/cycles/blender/addon/__init__.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/intern/cycles/blender/addon/__init__.py b/intern/cycles/blender/addon/__init__.py
index 038126278aa..1f148538328 100644
--- a/intern/cycles/blender/addon/__init__.py
+++ b/intern/cycles/blender/addon/__init__.py
@@ -37,6 +37,8 @@ if "bpy" in locals():
importlib.reload(version_update)
if "ui" in locals():
importlib.reload(ui)
+ if "operators" in locals():
+ importlib.reload(operators)
if "properties" in locals():
importlib.reload(properties)
if "presets" in locals():
@@ -118,6 +120,7 @@ classes = (
def register():
from bpy.utils import register_class
from . import ui
+ from . import operators
from . import properties
from . import presets
import atexit
@@ -130,6 +133,7 @@ def register():
properties.register()
ui.register()
+ operators.register()
presets.register()
for cls in classes:
@@ -141,6 +145,7 @@ def register():
def unregister():
from bpy.utils import unregister_class
from . import ui
+ from . import operators
from . import properties
from . import presets
import atexit
@@ -148,6 +153,7 @@ def unregister():
bpy.app.handlers.version_update.remove(version_update.do_versions)
ui.unregister()
+ operators.unregister()
properties.unregister()
presets.unregister()