[nodes] Update labels and versions for nodes

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 <candice.bentejac@gmail.com>
This commit is contained in:
Candice Bentéjac 2025-01-17 17:09:09 +01:00
parent 6f254ebbb9
commit fce6ba107c
4 changed files with 9 additions and 9 deletions

View file

@ -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="",
),

View file

@ -36,7 +36,7 @@ Estimate relative pose between each pair of views that share tracks.
),
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 @@ Estimate relative pose between each pair of views that share tracks.
),
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),

View file

@ -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):

View file

@ -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):