diff --git a/meshroom/nodes/aliceVision/LdrToHdrCalibration.py b/meshroom/nodes/aliceVision/LdrToHdrCalibration.py index a93ca226..752b2e5a 100644 --- a/meshroom/nodes/aliceVision/LdrToHdrCalibration.py +++ b/meshroom/nodes/aliceVision/LdrToHdrCalibration.py @@ -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', diff --git a/meshroom/nodes/aliceVision/LdrToHdrMerge.py b/meshroom/nodes/aliceVision/LdrToHdrMerge.py index 30357eee..af6f0435 100644 --- a/meshroom/nodes/aliceVision/LdrToHdrMerge.py +++ b/meshroom/nodes/aliceVision/LdrToHdrMerge.py @@ -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', diff --git a/meshroom/nodes/aliceVision/LdrToHdrSampling.py b/meshroom/nodes/aliceVision/LdrToHdrSampling.py index dc1578c4..7b22cded 100644 --- a/meshroom/nodes/aliceVision/LdrToHdrSampling.py +++ b/meshroom/nodes/aliceVision/LdrToHdrSampling.py @@ -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',