diff --git a/meshroom/nodes/aliceVision/PanoramaPostProcessing.py b/meshroom/nodes/aliceVision/PanoramaPostProcessing.py index eb28db88..447b91f7 100644 --- a/meshroom/nodes/aliceVision/PanoramaPostProcessing.py +++ b/meshroom/nodes/aliceVision/PanoramaPostProcessing.py @@ -40,13 +40,13 @@ Post process the panorama. uid=[0] ), desc.ChoiceParam( - name='outputColorSpace', - label='Output Color Space', - description='Allows you to choose the color space of the output image.', - value='Linear', - values=['sRGB', 'rec709', 'Linear', 'ACES2065-1', 'ACEScg'], - exclusive=True, - uid=[0], + name='outputColorSpace', + label='Output Color Space', + description='Allows you to choose the color space of the output image.', + value='Linear', + values=['sRGB', 'rec709', 'Linear', 'ACES2065-1', 'ACEScg'], + exclusive=True, + uid=[0], ), desc.ChoiceParam( name='verboseLevel', @@ -68,4 +68,12 @@ Post process the panorama. value=desc.Node.internalFolder + 'panorama.exr', uid=[], ), + desc.File( + name='outputPanoramaPreview', + label='Output Panorama preview', + description='', + semantic='image', + value=desc.Node.internalFolder + 'panoramaPreview.jpg', + uid=[], + ), ]