[nodes] ldrToHdr: nbBrackets should invalidate UID

instead of "userNbBrackets" (which is only an intermediate parameter used to compute "nbBrackets")
This commit is contained in:
Fabien Castan 2020-09-30 15:24:05 +02:00
parent 76daea92e0
commit ef99a2916d
3 changed files with 9 additions and 9 deletions

View file

@ -1,4 +1,4 @@
__version__ = "2.0"
__version__ = "3.0"
import json
@ -82,7 +82,7 @@ class LdrToHdrCalibration(desc.CommandLineNode):
description='Number of exposure brackets per HDR image (0 for automatic detection).',
value=0,
range=(0, 15, 1),
uid=[0],
uid=[],
group='user', # not used directly on the command line
),
desc.IntParam(
@ -91,7 +91,7 @@ class LdrToHdrCalibration(desc.CommandLineNode):
description='Number of exposure brackets used per HDR image. It is detected automatically from input Viewpoints metadata if "userNbBrackets" is 0, else it is equal to "userNbBrackets".',
value=0,
range=(0, 10, 1),
uid=[],
uid=[0],
),
desc.IntParam(
name='channelQuantizationPower',

View file

@ -1,4 +1,4 @@
__version__ = "3.0"
__version__ = "4.0"
import json
@ -53,7 +53,7 @@ class LdrToHdrMerge(desc.CommandLineNode):
description='Number of exposure brackets per HDR image (0 for automatic detection).',
value=0,
range=(0, 15, 1),
uid=[0],
uid=[],
group='user', # not used directly on the command line
),
desc.IntParam(
@ -62,7 +62,7 @@ class LdrToHdrMerge(desc.CommandLineNode):
description='Number of exposure brackets used per HDR image. It is detected automatically from input Viewpoints metadata if "userNbBrackets" is 0, else it is equal to "userNbBrackets".',
value=0,
range=(0, 10, 1),
uid=[],
uid=[0],
),
desc.IntParam(
name='offsetRefBracketIndex',

View file

@ -1,4 +1,4 @@
__version__ = "3.0"
__version__ = "4.0"
import json
@ -63,7 +63,7 @@ class LdrToHdrSampling(desc.CommandLineNode):
description='Number of exposure brackets per HDR image (0 for automatic detection).',
value=0,
range=(0, 15, 1),
uid=[0],
uid=[],
group='user', # not used directly on the command line
),
desc.IntParam(
@ -72,7 +72,7 @@ class LdrToHdrSampling(desc.CommandLineNode):
description='Number of exposure brackets used per HDR image. It is detected automatically from input Viewpoints metadata if "userNbBrackets" is 0, else it is equal to "userNbBrackets".',
value=0,
range=(0, 10, 1),
uid=[],
uid=[0],
),
desc.BoolParam(
name='byPass',