[hdri] update default values for hdri pipeline

This commit is contained in:
Fabien Castan 2019-12-11 15:56:05 +01:00
parent d29b48e239
commit 1e7c201216
3 changed files with 3 additions and 2 deletions

View file

@ -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])

View file

@ -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(

View file

@ -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]
),