Skip to content

Commit ef99a29

Browse files
committed
[nodes] ldrToHdr: nbBrackets should invalidate UID
instead of "userNbBrackets" (which is only an intermediate parameter used to compute "nbBrackets")
1 parent 76daea9 commit ef99a29

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

meshroom/nodes/aliceVision/LdrToHdrCalibration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.0"
1+
__version__ = "3.0"
22

33
import json
44

@@ -82,7 +82,7 @@ class LdrToHdrCalibration(desc.CommandLineNode):
8282
description='Number of exposure brackets per HDR image (0 for automatic detection).',
8383
value=0,
8484
range=(0, 15, 1),
85-
uid=[0],
85+
uid=[],
8686
group='user', # not used directly on the command line
8787
),
8888
desc.IntParam(
@@ -91,7 +91,7 @@ class LdrToHdrCalibration(desc.CommandLineNode):
9191
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".',
9292
value=0,
9393
range=(0, 10, 1),
94-
uid=[],
94+
uid=[0],
9595
),
9696
desc.IntParam(
9797
name='channelQuantizationPower',

meshroom/nodes/aliceVision/LdrToHdrMerge.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.0"
1+
__version__ = "4.0"
22

33
import json
44

@@ -53,7 +53,7 @@ class LdrToHdrMerge(desc.CommandLineNode):
5353
description='Number of exposure brackets per HDR image (0 for automatic detection).',
5454
value=0,
5555
range=(0, 15, 1),
56-
uid=[0],
56+
uid=[],
5757
group='user', # not used directly on the command line
5858
),
5959
desc.IntParam(
@@ -62,7 +62,7 @@ class LdrToHdrMerge(desc.CommandLineNode):
6262
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".',
6363
value=0,
6464
range=(0, 10, 1),
65-
uid=[],
65+
uid=[0],
6666
),
6767
desc.IntParam(
6868
name='offsetRefBracketIndex',

meshroom/nodes/aliceVision/LdrToHdrSampling.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.0"
1+
__version__ = "4.0"
22

33
import json
44

@@ -63,7 +63,7 @@ class LdrToHdrSampling(desc.CommandLineNode):
6363
description='Number of exposure brackets per HDR image (0 for automatic detection).',
6464
value=0,
6565
range=(0, 15, 1),
66-
uid=[0],
66+
uid=[],
6767
group='user', # not used directly on the command line
6868
),
6969
desc.IntParam(
@@ -72,7 +72,7 @@ class LdrToHdrSampling(desc.CommandLineNode):
7272
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".',
7373
value=0,
7474
range=(0, 10, 1),
75-
uid=[],
75+
uid=[0],
7676
),
7777
desc.BoolParam(
7878
name='byPass',

0 commit comments

Comments
 (0)