From b87432fe1efe6171bf34fa1bf3d25764d03281b6 Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Wed, 18 Sep 2019 20:31:40 +0200 Subject: [PATCH] [nodes] Panorama: new param "refine" --- meshroom/nodes/aliceVision/PanoramaEstimation.py | 8 +++++++- meshroom/nodes/aliceVision/PanoramaStitching.py | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/meshroom/nodes/aliceVision/PanoramaEstimation.py b/meshroom/nodes/aliceVision/PanoramaEstimation.py index e8947d84..bb5a904e 100644 --- a/meshroom/nodes/aliceVision/PanoramaEstimation.py +++ b/meshroom/nodes/aliceVision/PanoramaEstimation.py @@ -86,6 +86,13 @@ class PanoramaEstimation(desc.CommandLineNode): uid=[0], 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( name='lockAllIntrinsics', 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.', value=False, uid=[0], - advanced=True, ), desc.ChoiceParam( name='verboseLevel', diff --git a/meshroom/nodes/aliceVision/PanoramaStitching.py b/meshroom/nodes/aliceVision/PanoramaStitching.py index 9369b7a5..d3123fb0 100644 --- a/meshroom/nodes/aliceVision/PanoramaStitching.py +++ b/meshroom/nodes/aliceVision/PanoramaStitching.py @@ -55,8 +55,8 @@ class PanoramaStitching(desc.CommandLineNode): name='transitionSize', label='Transition Size', description='Size of the transition between images (in pixels).', - value=10.0, - range=(0.0, 100.0, 1.0), + value=100.0, + range=(0.0, 500.0, 1.0), uid=[0], ), desc.IntParam(