mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-20 01:57:16 +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)
|
# parallelization = desc.Parallelization(blockSize=40)
|
||||||
# commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}'
|
# commandLineRange = '--rangeStart {rangeStart} --rangeSize {rangeBlockSize}'
|
||||||
|
|
||||||
|
documentation = '''
|
||||||
|
Convert or apply filtering to the input images.
|
||||||
|
'''
|
||||||
|
|
||||||
inputs = [
|
inputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='input',
|
name='input',
|
||||||
|
@ -20,8 +24,8 @@ class ImageProcessing(desc.CommandLineNode):
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name='extension',
|
name='extension',
|
||||||
label='File Extension',
|
label='File Extension',
|
||||||
description='File Extension.',
|
description='File Extension. If empty, use the input file type.',
|
||||||
value='',
|
value='exr',
|
||||||
values=['', 'exr', 'jpg', 'tiff', 'png'],
|
values=['', 'exr', 'jpg', 'tiff', 'png'],
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -33,6 +37,13 @@ class ImageProcessing(desc.CommandLineNode):
|
||||||
value=False,
|
value=False,
|
||||||
uid=[0],
|
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(
|
desc.BoolParam(
|
||||||
name='exposureCompensation',
|
name='exposureCompensation',
|
||||||
label='Exposure Compensation',
|
label='Exposure Compensation',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue