Skip to content

Commit

Permalink
add minInliers parameter (optional)
Browse files Browse the repository at this point in the history
  • Loading branch information
servantftechnicolor committed Jan 14, 2025
1 parent eb9478c commit 616d759
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions meshroom/nodes/aliceVision/RelativePoseEstimating.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ class RelativePoseEstimating(desc.AVCommandLineNode):
range=(1024, 500000, 1),
advanced=True,
),
desc.IntParam(
name="minInliers",
label="Ransac min inliers",
description="Minimal allowed inliers in two view relationship.",
value=35,
range=(1, 1000, 1),
advanced=True,
),
desc.ChoiceParam(
name="verboseLevel",
label="Verbose Level",
Expand Down

0 comments on commit 616d759

Please sign in to comment.