[nodes] expose image storageDataType on some nodes

This commit is contained in:
Fabien Castan 2020-09-11 21:25:42 +02:00
parent f9a6f7de68
commit 03f45be0ee
3 changed files with 39 additions and 0 deletions

View file

@ -64,6 +64,19 @@ Multiple cameras are contributing to the low frequencies and only the best one c
value=True,
uid=[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='overlayType',
label='Overlay Type',