Skip to content

Commit 317f864

Browse files
authored
Merge pull request #2166 from alicevision/dev/lidarPipeline
Lidar Pipeline integration
2 parents 02b5dd4 + a9a2193 commit 317f864

12 files changed

Lines changed: 1195 additions & 44 deletions

meshroom/aliceVision/SfmExpanding.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.5"
1+
__version__ = "2.6"
22

33
from meshroom.core import desc
44
from meshroom.core.utils import VERBOSE_LEVEL
@@ -300,6 +300,14 @@ class SfMExpanding(desc.AVCommandLineNode):
300300
description="Enable observations weighting to reduce impact of regions with high point density.",
301301
value=False,
302302
),
303+
desc.FloatParam(
304+
name="lossParameter",
305+
label="Loss Parameter",
306+
description="Huber loss threshold used in bundle adjustment.",
307+
value=4.0,
308+
range=(0.1, 100.0, 0.1),
309+
advanced=True,
310+
),
303311
desc.IntParam(
304312
name="minNbCamerasToRefinePrincipalPoint",
305313
label="Min Nb Cameras To Refine Principal Point",

0 commit comments

Comments
 (0)