[imageProcessing] add inputFolders and exposes outputFolder

- add inputFolders option for batch fitering
- exposes the output folder
This commit is contained in:
Enguerrand DE SMET 2020-06-25 17:59:17 +02:00
parent 751d6fd325
commit 2239d6a311

View file

@ -17,6 +17,18 @@ class ImageProcessing(desc.CommandLineNode):
value='',
uid=[0],
),
desc.ListAttribute(
elementDesc=desc.File(
name="imagesFolder",
label="Images Folder",
description="",
value="",
uid=[0],
),
name="inputFolders",
label="Images input Folders",
description='Use images from specific folder(s).',
),
desc.ChoiceParam(
name='extension',
label='Output File Extension',
@ -168,4 +180,12 @@ class ImageProcessing(desc.CommandLineNode):
value=desc.Node.internalFolder + 'sfmData.abc',
uid=[],
),
desc.File(
name='outputFolder',
label='Output Images Folder',
description='Output Images Folder.',
value=desc.Node.internalFolder,
group='', # do not export on the command line
uid=[],
),
]