mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-31 15:28:35 +02:00
[nodes] Panorama: new param "refine"
This commit is contained in:
parent
ade9360b1f
commit
b87432fe1e
2 changed files with 9 additions and 3 deletions
|
@ -86,6 +86,13 @@ class PanoramaEstimation(desc.CommandLineNode):
|
||||||
uid=[0],
|
uid=[0],
|
||||||
advanced=True,
|
advanced=True,
|
||||||
),
|
),
|
||||||
|
desc.BoolParam(
|
||||||
|
name='refine',
|
||||||
|
label='Refine',
|
||||||
|
description='Refine camera relative poses, points and optionally internal camera parameter',
|
||||||
|
value=False,
|
||||||
|
uid=[0],
|
||||||
|
),
|
||||||
desc.BoolParam(
|
desc.BoolParam(
|
||||||
name='lockAllIntrinsics',
|
name='lockAllIntrinsics',
|
||||||
label='Force Lock of All Intrinsic Camera Parameters.',
|
label='Force Lock of All Intrinsic Camera Parameters.',
|
||||||
|
@ -94,7 +101,6 @@ class PanoramaEstimation(desc.CommandLineNode):
|
||||||
'This may be helpful if the input cameras are already fully calibrated.',
|
'This may be helpful if the input cameras are already fully calibrated.',
|
||||||
value=False,
|
value=False,
|
||||||
uid=[0],
|
uid=[0],
|
||||||
advanced=True,
|
|
||||||
),
|
),
|
||||||
desc.ChoiceParam(
|
desc.ChoiceParam(
|
||||||
name='verboseLevel',
|
name='verboseLevel',
|
||||||
|
|
|
@ -55,8 +55,8 @@ class PanoramaStitching(desc.CommandLineNode):
|
||||||
name='transitionSize',
|
name='transitionSize',
|
||||||
label='Transition Size',
|
label='Transition Size',
|
||||||
description='Size of the transition between images (in pixels).',
|
description='Size of the transition between images (in pixels).',
|
||||||
value=10.0,
|
value=100.0,
|
||||||
range=(0.0, 100.0, 1.0),
|
range=(0.0, 500.0, 1.0),
|
||||||
uid=[0],
|
uid=[0],
|
||||||
),
|
),
|
||||||
desc.IntParam(
|
desc.IntParam(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue