diff --git a/meshroom/nodes/aliceVision/ExportMatches.py b/meshroom/nodes/aliceVision/ExportMatches.py index 5692a18c77..05e40cd138 100644 --- a/meshroom/nodes/aliceVision/ExportMatches.py +++ b/meshroom/nodes/aliceVision/ExportMatches.py @@ -1,4 +1,4 @@ -__version__ = "1.1" +__version__ = "2.0" from meshroom.core import desc from meshroom.core.utils import DESCRIBER_TYPES, VERBOSE_LEVEL @@ -52,13 +52,13 @@ class ExportMatches(desc.AVCommandLineNode): ), desc.File( name="filterA", - label="filter A", + label="Filter A", description="One item of the pair must match this.", value="", ), desc.File( name="filterB", - label="filter B", + label="Filter B", description="One item of the pair must match this.", value="", ), diff --git a/meshroom/nodes/aliceVision/RelativePoseEstimating.py b/meshroom/nodes/aliceVision/RelativePoseEstimating.py index 2ec076c07b..08fd3c7f00 100644 --- a/meshroom/nodes/aliceVision/RelativePoseEstimating.py +++ b/meshroom/nodes/aliceVision/RelativePoseEstimating.py @@ -36,7 +36,7 @@ class RelativePoseEstimating(desc.AVCommandLineNode): ), desc.IntParam( name="countIterations", - label="Ransac max iterations", + label="Ransac Max Iterations", description="Maximal number of iterations.", value=1024, range=(1024, 500000, 1), @@ -44,7 +44,7 @@ class RelativePoseEstimating(desc.AVCommandLineNode): ), desc.IntParam( name="minInliers", - label="Ransac min inliers", + label="Ransac Min Inliers", description="Minimal allowed inliers in two view relationship.", value=35, range=(1, 1000, 1), diff --git a/meshroom/nodes/aliceVision/SfmBootstraping.py b/meshroom/nodes/aliceVision/SfmBootstraping.py index 4279ac16a5..a2f790ecc4 100644 --- a/meshroom/nodes/aliceVision/SfmBootstraping.py +++ b/meshroom/nodes/aliceVision/SfmBootstraping.py @@ -1,7 +1,7 @@ -__version__ = "2.0" +__version__ = "3.0" from meshroom.core import desc -from meshroom.core.utils import DESCRIBER_TYPES, VERBOSE_LEVEL +from meshroom.core.utils import VERBOSE_LEVEL class SfMBootStraping(desc.AVCommandLineNode): diff --git a/meshroom/nodes/aliceVision/SfmExpanding.py b/meshroom/nodes/aliceVision/SfmExpanding.py index d58d1a3008..03b652e229 100644 --- a/meshroom/nodes/aliceVision/SfmExpanding.py +++ b/meshroom/nodes/aliceVision/SfmExpanding.py @@ -1,7 +1,7 @@ -__version__ = "1.0" +__version__ = "2.0" from meshroom.core import desc -from meshroom.core.utils import DESCRIBER_TYPES, VERBOSE_LEVEL +from meshroom.core.utils import VERBOSE_LEVEL class SfMExpanding(desc.AVCommandLineNode):