Skip to content

Commit

Permalink
[nodes] Update labels and versions for nodes
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
cbentejac committed Jan 17, 2025
1 parent 6f254eb commit fce6ba1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions meshroom/nodes/aliceVision/ExportMatches.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.1"
__version__ = "2.0"

from meshroom.core import desc
from meshroom.core.utils import DESCRIBER_TYPES, VERBOSE_LEVEL
Expand Down Expand Up @@ -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="",
),
Expand Down
4 changes: 2 additions & 2 deletions meshroom/nodes/aliceVision/RelativePoseEstimating.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ 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),
advanced=True,
),
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),
Expand Down
4 changes: 2 additions & 2 deletions meshroom/nodes/aliceVision/SfmBootstraping.py
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
4 changes: 2 additions & 2 deletions meshroom/nodes/aliceVision/SfmExpanding.py
Original file line number Diff line number Diff line change
@@ -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):
Expand Down

0 comments on commit fce6ba1

Please sign in to comment.