mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-06 04:41:58 +02:00
[nodes] Remove invalidate=True
from descriptions
This commit is contained in:
parent
07b65499ce
commit
41a1b47c43
81 changed files with 8 additions and 1076 deletions
|
@ -20,7 +20,6 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
label="SfMData",
|
||||
description="SfMData file. Must contain the camera calibration.",
|
||||
value="",
|
||||
invalidate=True,
|
||||
),
|
||||
desc.ListAttribute(
|
||||
elementDesc=desc.File(
|
||||
|
@ -28,7 +27,6 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
label="Features Folder",
|
||||
description="Folder containing some extracted features and descriptors.",
|
||||
value="",
|
||||
invalidate=True,
|
||||
),
|
||||
name="featuresFolders",
|
||||
label="Features Folders",
|
||||
|
@ -40,7 +38,6 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
label="Matches Folder",
|
||||
description="Folder in which some computed matches are stored.",
|
||||
value="",
|
||||
invalidate=True,
|
||||
),
|
||||
name="matchesFolders",
|
||||
label="Matches Folders",
|
||||
|
@ -53,7 +50,6 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
values=DESCRIBER_TYPES,
|
||||
value=["dspsift"],
|
||||
exclusive=False,
|
||||
invalidate=True,
|
||||
joinChar=",",
|
||||
),
|
||||
desc.IntParam(
|
||||
|
@ -64,7 +60,6 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
"0 means no limit.",
|
||||
value=0,
|
||||
range=(0, 50000, 1),
|
||||
invalidate=True,
|
||||
),
|
||||
desc.IntParam(
|
||||
name="minNumberOfMatches",
|
||||
|
@ -74,7 +69,6 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
"0 means no limit.",
|
||||
value=0,
|
||||
range=(0, 50000, 1),
|
||||
invalidate=True,
|
||||
),
|
||||
desc.IntParam(
|
||||
name="minNumberOfObservationsForTriangulation",
|
||||
|
@ -85,7 +79,6 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
"(from 1.5% to 11% on the tested datasets).",
|
||||
value=2,
|
||||
range=(2, 10, 1),
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.FloatParam(
|
||||
|
@ -94,7 +87,6 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
description="Minimum angle for triangulation.",
|
||||
value=3.0,
|
||||
range=(0.1, 10.0, 0.1),
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.FloatParam(
|
||||
|
@ -103,7 +95,6 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
description="Minimum angle for landmark.",
|
||||
value=2.0,
|
||||
range=(0.1, 10.0, 0.1),
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
|
@ -111,7 +102,6 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
label="Use Rig Constraint",
|
||||
description="Enable/Disable rig constraint.",
|
||||
value=True,
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.IntParam(
|
||||
|
@ -120,7 +110,6 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
description="Minimum number of cameras to start the calibration of the rig.",
|
||||
value=20,
|
||||
range=(1, 50, 1),
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
|
@ -128,7 +117,6 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
label="Compute Structure Color",
|
||||
description="Enable/Disable color computation of each 3D point.",
|
||||
value=True,
|
||||
invalidate=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name="interFileExtension",
|
||||
|
@ -147,7 +135,6 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
values=VERBOSE_LEVEL,
|
||||
value="info",
|
||||
exclusive=True,
|
||||
invalidate=False,
|
||||
),
|
||||
]
|
||||
|
||||
|
@ -157,13 +144,11 @@ Contrary to the StructureFromMotion node, this node does not infer the camera po
|
|||
label="SfMData",
|
||||
description="Path to the output SfMData file.",
|
||||
value=desc.Node.internalFolder + "sfm.abc",
|
||||
invalidate=False,
|
||||
),
|
||||
desc.File(
|
||||
name="extraInfoFolder",
|
||||
label="Folder",
|
||||
description="Folder for intermediate reconstruction files and additional reconstruction information files.",
|
||||
value=desc.Node.internalFolder,
|
||||
invalidate=False,
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue