mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-03 03:11:56 +02:00
[nodes] Align FloatParams' and IntParams' ranges with their params' type
This commit is contained in:
parent
545f3a7218
commit
e7290313bf
9 changed files with 29 additions and 29 deletions
|
@ -213,7 +213,7 @@ It iterates like that, adding cameras and triangulating new 2D features into 3D
|
|||
label='Min Angle For Triangulation',
|
||||
description='Minimum angle for triangulation.',
|
||||
value=3.0,
|
||||
range=(0.1, 10, 0.1),
|
||||
range=(0.1, 10.0, 0.1),
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
|
@ -222,7 +222,7 @@ It iterates like that, adding cameras and triangulating new 2D features into 3D
|
|||
label='Min Angle For Landmark',
|
||||
description='Minimum angle for landmark.',
|
||||
value=2.0,
|
||||
range=(0.1, 10, 0.1),
|
||||
range=(0.1, 10.0, 0.1),
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
|
@ -231,7 +231,7 @@ It iterates like that, adding cameras and triangulating new 2D features into 3D
|
|||
label='Max Reprojection Error',
|
||||
description='Maximum reprojection error.',
|
||||
value=4.0,
|
||||
range=(0.1, 10, 0.1),
|
||||
range=(0.1, 10.0, 0.1),
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
|
@ -240,7 +240,7 @@ It iterates like that, adding cameras and triangulating new 2D features into 3D
|
|||
label='Min Angle Initial Pair',
|
||||
description='Minimum angle for the initial pair.',
|
||||
value=5.0,
|
||||
range=(0.1, 10, 0.1),
|
||||
range=(0.1, 10.0, 0.1),
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
|
@ -249,7 +249,7 @@ It iterates like that, adding cameras and triangulating new 2D features into 3D
|
|||
label='Max Angle Initial Pair',
|
||||
description='Maximum angle for the initial pair.',
|
||||
value=40.0,
|
||||
range=(0.1, 60, 0.1),
|
||||
range=(0.1, 60.0, 0.1),
|
||||
uid=[0],
|
||||
advanced=True,
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue