diff --git a/meshroom/nodes/aliceVision/RelativePoseEstimating.py b/meshroom/nodes/aliceVision/RelativePoseEstimating.py index 94254ffa..cf231fe5 100644 --- a/meshroom/nodes/aliceVision/RelativePoseEstimating.py +++ b/meshroom/nodes/aliceVision/RelativePoseEstimating.py @@ -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", diff --git a/meshroom/nodes/aliceVision/SfmBootstraping.py b/meshroom/nodes/aliceVision/SfmBootstraping.py index c2eeaefb..4279ac16 100644 --- a/meshroom/nodes/aliceVision/SfmBootstraping.py +++ b/meshroom/nodes/aliceVision/SfmBootstraping.py @@ -25,6 +25,12 @@ class SfMBootStraping(desc.AVCommandLineNode): description="Tracks file.", value="", ), + desc.File( + name="meshFilename", + label="Mesh File", + description="Mesh file (*.obj).", + value="", + ), desc.File( name="pairs", label="Pairs File", diff --git a/meshroom/nodes/aliceVision/SfmExpanding.py b/meshroom/nodes/aliceVision/SfmExpanding.py index f96cefed..d58d1a30 100644 --- a/meshroom/nodes/aliceVision/SfmExpanding.py +++ b/meshroom/nodes/aliceVision/SfmExpanding.py @@ -28,6 +28,12 @@ class SfMExpanding(desc.AVCommandLineNode): description="Tracks file.", value="", ), + desc.File( + name="meshFilename", + label="Mesh File", + description="Mesh file (*.obj).", + value="", + ), desc.IntParam( name="localizerEstimatorMaxIterations", label="Localizer Max Ransac Iterations", diff --git a/meshroom/pipelines/nodalCameraTracking.mg b/meshroom/pipelines/nodalCameraTracking.mg index 2e7b6c6b..64686547 100644 --- a/meshroom/pipelines/nodalCameraTracking.mg +++ b/meshroom/pipelines/nodalCameraTracking.mg @@ -18,7 +18,7 @@ "ImageSegmentationBox": "0.1", "NodalSfM": "2.0", "Publish": "1.3", - "RelativePoseEstimating": "2.0", + "RelativePoseEstimating": "3.0", "ScenePreview": "2.0", "TracksBuilding": "1.0" } diff --git a/meshroom/pipelines/nodalCameraTrackingWithoutCalibration.mg b/meshroom/pipelines/nodalCameraTrackingWithoutCalibration.mg index b67064ab..ba9afc9d 100644 --- a/meshroom/pipelines/nodalCameraTrackingWithoutCalibration.mg +++ b/meshroom/pipelines/nodalCameraTrackingWithoutCalibration.mg @@ -16,7 +16,7 @@ "ImageSegmentationBox": "0.1", "NodalSfM": "2.0", "Publish": "1.3", - "RelativePoseEstimating": "2.0", + "RelativePoseEstimating": "3.0", "ScenePreview": "2.0", "TracksBuilding": "1.0" }