mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-29 22:47:17 +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
|
@ -22,7 +22,6 @@ Estimate relative camera rotations between input images.
|
|||
label="SfMData",
|
||||
description="Input SfMData file.",
|
||||
value="",
|
||||
invalidate=True,
|
||||
),
|
||||
desc.ListAttribute(
|
||||
elementDesc=desc.File(
|
||||
|
@ -30,7 +29,6 @@ Estimate relative camera rotations between input images.
|
|||
label="Features Folder",
|
||||
description="Folder containing some extracted features.",
|
||||
value="",
|
||||
invalidate=True,
|
||||
),
|
||||
name="featuresFolders",
|
||||
label="Features Folders",
|
||||
|
@ -42,7 +40,6 @@ Estimate relative camera rotations between input images.
|
|||
label="Matches Folder",
|
||||
description="Folder containing some matches.",
|
||||
value="",
|
||||
invalidate=True,
|
||||
),
|
||||
name="matchesFolders",
|
||||
label="Matches Folders",
|
||||
|
@ -55,7 +52,6 @@ Estimate relative camera rotations between input images.
|
|||
values=DESCRIBER_TYPES,
|
||||
value=["sift"],
|
||||
exclusive=False,
|
||||
invalidate=True,
|
||||
joinChar=",",
|
||||
),
|
||||
desc.FloatParam(
|
||||
|
@ -64,7 +60,6 @@ Estimate relative camera rotations between input images.
|
|||
description="Offset to the panorama longitude (in degrees).",
|
||||
value=0.0,
|
||||
range=(-180.0, 180.0, 1.0),
|
||||
invalidate=True,
|
||||
),
|
||||
desc.FloatParam(
|
||||
name="offsetLatitude",
|
||||
|
@ -72,7 +67,6 @@ Estimate relative camera rotations between input images.
|
|||
description="Offset to the panorama latitude (in degrees).",
|
||||
value=0.0,
|
||||
range=(-90.0, 90.0, 1.0),
|
||||
invalidate=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name="rotationAveraging",
|
||||
|
@ -83,7 +77,6 @@ Estimate relative camera rotations between input images.
|
|||
values=["L1_minimization", "L2_minimization"],
|
||||
value="L2_minimization",
|
||||
exclusive=True,
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
|
@ -96,7 +89,6 @@ Estimate relative camera rotations between input images.
|
|||
values=["essential_matrix", "homography_matrix", "rotation_matrix"],
|
||||
value="rotation_matrix",
|
||||
exclusive=True,
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
|
@ -104,7 +96,6 @@ Estimate relative camera rotations between input images.
|
|||
label="Rotation Averaging Weighting",
|
||||
description="Rotation averaging weighting based on the number of feature matches.",
|
||||
value=True,
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
|
@ -112,14 +103,12 @@ Estimate relative camera rotations between input images.
|
|||
label="Filter Matches",
|
||||
description="Filter the matches.",
|
||||
value=False,
|
||||
invalidate=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
name="refine",
|
||||
label="Refine",
|
||||
description="Refine camera relative poses, points and optionally internal camera parameters.",
|
||||
value=True,
|
||||
invalidate=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
name="lockAllIntrinsics",
|
||||
|
@ -128,7 +117,6 @@ Estimate relative camera rotations between input images.
|
|||
"principal point, distortion if any) constant during the reconstruction.\n"
|
||||
"This may be helpful if the input cameras are already fully calibrated.",
|
||||
value=False,
|
||||
invalidate=True,
|
||||
),
|
||||
desc.FloatParam(
|
||||
name="maxAngleToPrior",
|
||||
|
@ -136,7 +124,6 @@ Estimate relative camera rotations between input images.
|
|||
description="Maximum angle allowed regarding the input prior (in degrees) before refinement.",
|
||||
value=20.0,
|
||||
range=(0.0, 360.0, 1.0),
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.FloatParam(
|
||||
|
@ -145,7 +132,6 @@ Estimate relative camera rotations between input images.
|
|||
description="Maximum angle allowed regarding the input prior (in degrees) after refinement.",
|
||||
value=2.0,
|
||||
range=(0.0, 360.0, 1.0),
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.FloatParam(
|
||||
|
@ -154,7 +140,6 @@ Estimate relative camera rotations between input images.
|
|||
description="Maximum angular error in global rotation averging (in degrees).",
|
||||
value=100.0,
|
||||
range=(0.0, 360.0, 1.0),
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
|
@ -162,7 +147,6 @@ Estimate relative camera rotations between input images.
|
|||
label="Intermediate Refine: Focal",
|
||||
description="Intermediate refine with rotation and focal length only.",
|
||||
value=False,
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.BoolParam(
|
||||
|
@ -170,7 +154,6 @@ Estimate relative camera rotations between input images.
|
|||
label="Intermediate Refine: Focal And Distortion",
|
||||
description="Intermediate refine with rotation, focal length and distortion.",
|
||||
value=False,
|
||||
invalidate=True,
|
||||
advanced=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
|
@ -180,7 +163,6 @@ Estimate relative camera rotations between input images.
|
|||
values=VERBOSE_LEVEL,
|
||||
value="info",
|
||||
exclusive=True,
|
||||
invalidate=False,
|
||||
),
|
||||
]
|
||||
|
||||
|
@ -190,13 +172,11 @@ Estimate relative camera rotations between input images.
|
|||
label="SfM File",
|
||||
description="Path to the output SfM file.",
|
||||
value=desc.Node.internalFolder + "panorama.abc",
|
||||
invalidate=False,
|
||||
),
|
||||
desc.File(
|
||||
name="outputViewsAndPoses",
|
||||
label="Views And Poses",
|
||||
description="Path to the output SfMData file with cameras (views and poses).",
|
||||
value=desc.Node.internalFolder + "cameras.sfm",
|
||||
invalidate=False,
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue