mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-19 09:37:14 +02:00
[nodes] ImageProcessing: add option keepImageFilename
This commit is contained in:
parent
51dbc88371
commit
bb683b6e32
1 changed files with 13 additions and 2 deletions
|
@ -9,6 +9,10 @@ class ImageProcessing(desc.CommandLineNode):
|
|||
# parallelization = desc.Parallelization(blockSize=40)
|
||||
# commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}'
|
||||
|
||||
documentation = '''
|
||||
Convert or apply filtering to the input images.
|
||||
'''
|
||||
|
||||
inputs = [
|
||||
desc.File(
|
||||
name='input',
|
||||
|
@ -20,8 +24,8 @@ class ImageProcessing(desc.CommandLineNode):
|
|||
desc.ChoiceParam(
|
||||
name='extension',
|
||||
label='File Extension',
|
||||
description='File Extension.',
|
||||
value='',
|
||||
description='File Extension. If empty, use the input file type.',
|
||||
value='exr',
|
||||
values=['', 'exr', 'jpg', 'tiff', 'png'],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
|
@ -33,6 +37,13 @@ class ImageProcessing(desc.CommandLineNode):
|
|||
value=False,
|
||||
uid=[0],
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='keepImageFilename',
|
||||
label='Keep Image Filename',
|
||||
description='Keep Image Filename instead of using View UID.',
|
||||
value=False,
|
||||
uid=[0],
|
||||
),
|
||||
desc.BoolParam(
|
||||
name='exposureCompensation',
|
||||
label='Exposure Compensation',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue