mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 08:48:40 +02:00
[nodes] ldrToHdr: nbBrackets should invalidate UID
instead of "userNbBrackets" (which is only an intermediate parameter used to compute "nbBrackets")
This commit is contained in:
parent
76daea92e0
commit
ef99a2916d
3 changed files with 9 additions and 9 deletions
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue