From 1e7c201216c2275d3833c194ffeed7857cf77cfa Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Wed, 11 Dec 2019 15:56:05 +0100 Subject: [PATCH] [hdri] update default values for hdri pipeline --- meshroom/multiview.py | 1 + meshroom/nodes/aliceVision/PanoramaCompositing.py | 2 +- meshroom/nodes/aliceVision/PanoramaWarping.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/meshroom/multiview.py b/meshroom/multiview.py index af9f6296..fb56a586 100644 --- a/meshroom/multiview.py +++ b/meshroom/multiview.py @@ -125,6 +125,7 @@ def hdriPipeline(graph): featureExtraction = graph.addNewNode('FeatureExtraction', input=ldr2hdr.outSfMDataFilename) + featureExtraction.describerPreset.value = 'high' imageMatching = graph.addNewNode('ImageMatching', input=featureExtraction.input, featuresFolders=[featureExtraction.output]) diff --git a/meshroom/nodes/aliceVision/PanoramaCompositing.py b/meshroom/nodes/aliceVision/PanoramaCompositing.py index 3b587c5a..4b5a3792 100644 --- a/meshroom/nodes/aliceVision/PanoramaCompositing.py +++ b/meshroom/nodes/aliceVision/PanoramaCompositing.py @@ -32,7 +32,7 @@ class PanoramaCompositing(desc.CommandLineNode): name='multiband', label='Use Multiband', description='Use multi band algorithm for compositing', - value=False, + value=True, uid=[0], ), desc.ChoiceParam( diff --git a/meshroom/nodes/aliceVision/PanoramaWarping.py b/meshroom/nodes/aliceVision/PanoramaWarping.py index 0034630f..a127fe35 100644 --- a/meshroom/nodes/aliceVision/PanoramaWarping.py +++ b/meshroom/nodes/aliceVision/PanoramaWarping.py @@ -22,7 +22,7 @@ class PanoramaWarping(desc.CommandLineNode): name='panoramaWidth', label='Panorama Width', description='Panorama width (pixels). 0 For automatic size', - value=1000, + value=10000, range=(0, 50000, 1000), uid=[0] ),