mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-30 23:08:25 +02:00
Update sfm pipeline to accept meshes
This commit is contained in:
parent
aeb77d8dbc
commit
eb9478c787
5 changed files with 23 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
__version__ = "2.0"
|
||||
__version__ = "3.0"
|
||||
|
||||
from meshroom.core import desc
|
||||
from meshroom.core.utils import DESCRIBER_TYPES, VERBOSE_LEVEL
|
||||
|
@ -34,6 +34,14 @@ Estimate relative pose between each pair of views that share tracks.
|
|||
description="Enforce pure rotation as a model",
|
||||
value=False,
|
||||
),
|
||||
desc.IntParam(
|
||||
name="countIterations",
|
||||
label="Ransac max iterations",
|
||||
description="Maximal number of iterations.",
|
||||
value=1024,
|
||||
range=(1024, 500000, 1),
|
||||
advanced=True,
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name="verboseLevel",
|
||||
label="Verbose Level",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue