mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-13 00:02:43 +02:00
[nodes] use lowerCamelCase for storageDataType param values
This commit is contained in:
parent
2f77a236b3
commit
bbaa0a4391
3 changed files with 28 additions and 28 deletions
|
@ -144,12 +144,12 @@ class LdrToHdrMerge(desc.CommandLineNode):
|
||||||
name='storageDataType',
|
name='storageDataType',
|
||||||
label='Storage Data Type',
|
label='Storage Data Type',
|
||||||
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'
|
||||||
' * HalfFinite : Use half float, but clamp values to avoid non-finite values\n'
|
' * halfFinite: Use half float, but clamp values to avoid non-finite values\n'
|
||||||
' * Auto : Use half float if all values can fit, else use full float\n',
|
' * auto: Use half float if all values can fit, else use full float\n',
|
||||||
value='Float',
|
value='float',
|
||||||
values=['Float', 'Half', 'HalfFinite', 'Auto'],
|
values=['float', 'half', 'halfFinite', 'auto'],
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
|
|
@ -68,12 +68,12 @@ Multiple cameras are contributing to the low frequencies and only the best one c
|
||||||
name='storageDataType',
|
name='storageDataType',
|
||||||
label='Storage Data Type',
|
label='Storage Data Type',
|
||||||
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'
|
||||||
' * HalfFinite : Use half float, but clamp values to avoid non-finite values\n'
|
' * halfFinite: Use half float, but clamp values to avoid non-finite values\n'
|
||||||
' * Auto : Use half float if all values can fit, else use full float\n',
|
' * auto: Use half float if all values can fit, else use full float\n',
|
||||||
value='Float',
|
value='float',
|
||||||
values=['Float', 'Half', 'HalfFinite', 'Auto'],
|
values=['float', 'half', 'halfFinite', 'auto'],
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
|
|
@ -60,12 +60,12 @@ Compute the image warping for each input image in the panorama coordinate system
|
||||||
name='storageDataType',
|
name='storageDataType',
|
||||||
label='Storage Data Type',
|
label='Storage Data Type',
|
||||||
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'
|
||||||
' * HalfFinite : Use half float, but clamp values to avoid non-finite values\n'
|
' * halfFinite: Use half float, but clamp values to avoid non-finite values\n'
|
||||||
' * Auto : Use half float if all values can fit, else use full float\n',
|
' * auto: Use half float if all values can fit, else use full float\n',
|
||||||
value='Float',
|
value='float',
|
||||||
values=['Float', 'Half', 'HalfFinite', 'Auto'],
|
values=['float', 'half', 'halfFinite', 'auto'],
|
||||||
exclusive=True,
|
exclusive=True,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue