Merge pull request #328 from alicevision/dev_convertSfMWhiteList

[nodes] `convertSfMFormat` users can now specify a view white list
This commit is contained in:
Fabien Castan 2018-12-19 17:44:15 +01:00 committed by GitHub
commit 863dde26f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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