mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-29 22:47:17 +02:00
[nodes] ImageProcessing: Use camel case for all labels
This commit is contained in:
parent
aafd773fda
commit
9681c954a6
1 changed files with 9 additions and 9 deletions
|
@ -104,7 +104,7 @@ Convert or apply filtering to the input images.
|
||||||
desc.BoolParam(
|
desc.BoolParam(
|
||||||
name='exposureCompensation',
|
name='exposureCompensation',
|
||||||
label='Exposure Compensation',
|
label='Exposure Compensation',
|
||||||
description='Exposure compensation (only valid for sfmData)',
|
description='Exposure compensation (only valid for SfMData)',
|
||||||
value=False,
|
value=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
@ -134,7 +134,7 @@ Convert or apply filtering to the input images.
|
||||||
desc.BoolParam(
|
desc.BoolParam(
|
||||||
name='geometry',
|
name='geometry',
|
||||||
label='Geometry',
|
label='Geometry',
|
||||||
description='Geometry correction if a model is available in sfm data.',
|
description='Geometry correction if a model is available in SfM data.',
|
||||||
value=False,
|
value=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
enabled=lambda node: node.lensCorrection.lensCorrectionEnabled.value,
|
enabled=lambda node: node.lensCorrection.lensCorrectionEnabled.value,
|
||||||
|
@ -477,7 +477,7 @@ Convert or apply filtering to the input images.
|
||||||
|
|
||||||
desc.BoolParam(
|
desc.BoolParam(
|
||||||
name='doWBAfterDemosaicing',
|
name='doWBAfterDemosaicing',
|
||||||
label='WB after demosaicing',
|
label='WB After Demosaicing',
|
||||||
description='Do White Balance after demosaicing, just before DCP profile application',
|
description='Do White Balance after demosaicing, just before DCP profile application',
|
||||||
value=False,
|
value=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -496,7 +496,7 @@ Convert or apply filtering to the input images.
|
||||||
|
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name='highlightMode',
|
name='highlightMode',
|
||||||
label='Highlight mode',
|
label='Highlight Mode',
|
||||||
description='LibRaw highlight mode:\n'
|
description='LibRaw highlight mode:\n'
|
||||||
' * 0: Clip (default)\n'
|
' * 0: Clip (default)\n'
|
||||||
' * 1: Unclip\n'
|
' * 1: Unclip\n'
|
||||||
|
@ -511,7 +511,7 @@ Convert or apply filtering to the input images.
|
||||||
desc.FloatParam(
|
desc.FloatParam(
|
||||||
name='correlatedColorTemperature',
|
name='correlatedColorTemperature',
|
||||||
label='Illuminant Color Temperature',
|
label='Illuminant Color Temperature',
|
||||||
description='Scene illuminant color temperature in Kelvin. A negative or null value indicates to use metadata information.',
|
description='Scene illuminant color temperature in Kelvin. A negative or null value indicates that the metadata information will be used.',
|
||||||
value=-1.0,
|
value=-1.0,
|
||||||
range=(-1.0, 10000.0, 1.0),
|
range=(-1.0, 10000.0, 1.0),
|
||||||
uid=[0],
|
uid=[0],
|
||||||
|
@ -519,7 +519,7 @@ Convert or apply filtering to the input images.
|
||||||
|
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name='storageDataType',
|
name='storageDataType',
|
||||||
label='Storage Data Type for EXR output',
|
label='Storage Data Type For EXR Output',
|
||||||
description='Storage image data type:\n'
|
description='Storage image data type:\n'
|
||||||
' * float: Use full floating point (32 bits per channel)\n'
|
' * float: Use full floating point (32 bits per channel)\n'
|
||||||
' * half: Use half float (16 bits per channel)\n'
|
' * half: Use half float (16 bits per channel)\n'
|
||||||
|
@ -585,8 +585,8 @@ Convert or apply filtering to the input images.
|
||||||
outputs = [
|
outputs = [
|
||||||
desc.File(
|
desc.File(
|
||||||
name='outSfMData',
|
name='outSfMData',
|
||||||
label='SfmData',
|
label='SfMData',
|
||||||
description='Output sfmData.',
|
description='Output SfMData.',
|
||||||
value=lambda attr: (desc.Node.internalFolder + os.path.basename(attr.node.input.value)) if (os.path.splitext(attr.node.input.value)[1] in ['.abc', '.sfm']) else '',
|
value=lambda attr: (desc.Node.internalFolder + os.path.basename(attr.node.input.value)) if (os.path.splitext(attr.node.input.value)[1] in ['.abc', '.sfm']) else '',
|
||||||
uid=[],
|
uid=[],
|
||||||
group='', # do not export on the command line
|
group='', # do not export on the command line
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue