mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-18 17:17:18 +02:00
[nodes] expose image storageDataType on some nodes
This commit is contained in:
parent
f9a6f7de68
commit
03f45be0ee
3 changed files with 39 additions and 0 deletions
|
@ -140,6 +140,19 @@ class LdrToHdrMerge(desc.CommandLineNode):
|
|||
uid=[0],
|
||||
enabled= lambda node: node.byPass.enabled and not node.byPass.value and node.highlightCorrectionFactor.value != 0,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='storageDataType',
|
||||
label='Storage Data Type',
|
||||
description='Storage image data type:\n'
|
||||
' * Float : Use full floating point (32 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'
|
||||
' * Auto : Use half float if all values can fit, else use full float\n',
|
||||
value='Float',
|
||||
values=['Float', 'Half', 'HalfFinite', 'Auto'],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='verboseLevel',
|
||||
label='Verbose Level',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue