mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 10:17:27 +02:00
Merge pull request #328 from alicevision/dev_convertSfMWhiteList
[nodes] `convertSfMFormat` users can now specify a view white list
This commit is contained in:
commit
863dde26f0
1 changed files with 14 additions and 1 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Reference in a new issue