From fce6ba107c1b6f2c8ef85a755c6d6d7b99c040b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Candice=20Bent=C3=A9jac?= Date: Fri, 17 Jan 2025 17:09:09 +0100 Subject: [PATCH] [nodes] Update labels and versions for nodes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update the versions for all the nodes that have been updated to support meshes as inputs and fix the case for some labels. Co-authored-by: Candice Bentéjac --- meshroom/nodes/aliceVision/ExportMatches.py | 6 +++--- meshroom/nodes/aliceVision/RelativePoseEstimating.py | 4 ++-- meshroom/nodes/aliceVision/SfmBootstraping.py | 4 ++-- meshroom/nodes/aliceVision/SfmExpanding.py | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) 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):