mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-31 18:06:31 +02:00
[nodes] PanoramaPostProcessing: Fix "previewSize"'s range
- Fixed the range of the "previewSize" parameter: since its step was set to 5000, it could only be set to 0 or 1000. It can now be set from 0 to 5000 with steps of 100 pixels; - Fixed the case of the "previewSize" and "outputPanoramaPreview"; - Improved the description of "previewSize", and added descriptions for "outputPanorama" and "outputPanoramaPreview".
This commit is contained in:
parent
f51919a8f3
commit
36686492f3
1 changed files with 6 additions and 6 deletions
|
@ -33,10 +33,10 @@ Post process the panorama.
|
|||
),
|
||||
desc.IntParam(
|
||||
name='previewSize',
|
||||
label='Panorama preview Width',
|
||||
description='Choose the output preview width (in pixels).',
|
||||
label='Panorama Preview Width',
|
||||
description='The width (in pixels) of the output panorama preview.',
|
||||
value=1000,
|
||||
range=(0, 1000, 5000),
|
||||
range=(0, 5000, 100),
|
||||
uid=[0]
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
|
@ -63,15 +63,15 @@ Post process the panorama.
|
|||
desc.File(
|
||||
name='outputPanorama',
|
||||
label='Output Panorama',
|
||||
description='',
|
||||
description='Generated panorama in EXR format.',
|
||||
semantic='image',
|
||||
value=desc.Node.internalFolder + 'panorama.exr',
|
||||
uid=[],
|
||||
),
|
||||
desc.File(
|
||||
name='outputPanoramaPreview',
|
||||
label='Output Panorama preview',
|
||||
description='',
|
||||
label='Output Panorama Preview',
|
||||
description='Preview of the generated panorama in JPG format.',
|
||||
semantic='image',
|
||||
value=desc.Node.internalFolder + 'panoramaPreview.jpg',
|
||||
uid=[],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue