mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-31 09:56:32 +02:00
[imageProcessing] add inputFolders and exposes outputFolder
- add inputFolders option for batch fitering - exposes the output folder
This commit is contained in:
parent
751d6fd325
commit
2239d6a311
1 changed files with 20 additions and 0 deletions
|
@ -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=[],
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue