From 71ebc0cf1ba46c51e2ec295936d350e95005a908 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20De=20Lillo?= Date: Wed, 19 Dec 2018 15:25:11 +0100 Subject: [PATCH] [nodes] `convertSfMFormat` users can now specify a view white list to filter views --- meshroom/nodes/aliceVision/ConvertSfMFormat.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/meshroom/nodes/aliceVision/ConvertSfMFormat.py b/meshroom/nodes/aliceVision/ConvertSfMFormat.py index b4cc4c7e..4d009da2 100644 --- a/meshroom/nodes/aliceVision/ConvertSfMFormat.py +++ b/meshroom/nodes/aliceVision/ConvertSfMFormat.py @@ -5,7 +5,8 @@ from meshroom.core import desc class ConvertSfMFormat(desc.CommandLineNode): commandLine = 'aliceVision_convertSfMFormat {allParams}' - + size = desc.DynamicNodeSize('input') + inputs = [ desc.File( name='input', @@ -34,6 +35,18 @@ class ConvertSfMFormat(desc.CommandLineNode): uid=[0], joinChar=',', ), + desc.ListAttribute( + elementDesc=desc.File( + name="imageId", + label="Image id", + description="", + value="", + uid=[0], + ), + name="imageWhiteList", + label="Image White List", + description='image white list (uids or image paths).', + ), desc.BoolParam( name='views', label='Views',