Skip to content

Commit

Permalink
[nodes] HDR Fusion: Harmonize ranges for nbBrackets and `userNbBrac…
Browse files Browse the repository at this point in the history
…kets`
  • Loading branch information
cbentejac committed Aug 4, 2023
1 parent c04cd32 commit 5ef284a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/LdrToHdrCalibration.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class LdrToHdrCalibration(desc.AVCommandLineNode):
"It is detected automatically from input Viewpoints metadata if 'userNbBrackets' is 0,\n"
"else it is equal to 'userNbBrackets'.",
value=0,
range=(0, 10, 1),
range=(0, 15, 1),
uid=[0],
group="bracketsParams"
),
Expand Down
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/LdrToHdrMerge.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class LdrToHdrMerge(desc.AVCommandLineNode):
"It is detected automatically from input Viewpoints metadata if 'userNbBrackets'\n"
"is 0, else it is equal to 'userNbBrackets'.",
value=0,
range=(0, 10, 1),
range=(0, 15, 1),
uid=[0],
group="bracketsParams"
),
Expand Down
2 changes: 1 addition & 1 deletion meshroom/nodes/aliceVision/LdrToHdrSampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class LdrToHdrSampling(desc.AVCommandLineNode):
"It is detected automatically from input Viewpoints metadata if 'userNbBrackets'\n"
"is 0, else it is equal to 'userNbBrackets'.",
value=0,
range=(0, 10, 1),
range=(0, 15, 1),
uid=[0],
group="bracketsParams"
),
Expand Down

0 comments on commit 5ef284a

Please sign in to comment.