[nodes] convertSfMFormat users can now specify a view white list to filter views

This commit is contained in:
Grégoire De Lillo 2018-12-19 15:25:11 +01:00
parent 0fffc468f8
commit 71ebc0cf1b

View file

@ -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',