From 161c7ba25d2e0fcaa04ddb1694433fd883e3e84d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Vital?= Date: Wed, 21 Jun 2023 18:18:22 +0200 Subject: [PATCH] [nodes] FeatureExtraction: add maskExtension and maskInvert params --- .../nodes/aliceVision/FeatureExtraction.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/meshroom/nodes/aliceVision/FeatureExtraction.py b/meshroom/nodes/aliceVision/FeatureExtraction.py index f3eff90c..16f87081 100644 --- a/meshroom/nodes/aliceVision/FeatureExtraction.py +++ b/meshroom/nodes/aliceVision/FeatureExtraction.py @@ -1,4 +1,4 @@ -__version__ = "1.2" +__version__ = "1.3" from meshroom.core import desc @@ -45,6 +45,22 @@ It is robust to motion-blur, depth-of-field, occlusion. Be careful to have enoug value="", uid=[0], ), + desc.ChoiceParam( + name="maskExtension", + label="Mask Extension", + description="File extension for masks.", + value="png", + values=["png", "exr", "jpg"], + exclusive=True, + uid=[0], + ), + desc.BoolParam( + name="maskInvert", + label="Invert Masks", + description="Invert mask values.", + value=False, + uid=[0], + ), desc.ChoiceParam( name="describerTypes", label="Describer Types",