Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alicevision/meshroom.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'meshroom/nodes/aliceVision/PanoramaWarping.py')
-rw-r--r--meshroom/nodes/aliceVision/PanoramaWarping.py29
1 files changed, 28 insertions, 1 deletions
diff --git a/meshroom/nodes/aliceVision/PanoramaWarping.py b/meshroom/nodes/aliceVision/PanoramaWarping.py
index 33d3e0a9..99a38d5c 100644
--- a/meshroom/nodes/aliceVision/PanoramaWarping.py
+++ b/meshroom/nodes/aliceVision/PanoramaWarping.py
@@ -92,9 +92,36 @@ Compute the image warping for each input image in the panorama coordinate system
outputs = [
desc.File(
name='output',
- label='Output directory',
+ label='Folder',
description='',
value=desc.Node.internalFolder,
uid=[],
),
+ desc.File(
+ name='warping',
+ label='Warping',
+ description='',
+ group='', # do not export on the command line
+ semantic='image',
+ value=desc.Node.internalFolder+'<VIEW_ID>.exr',
+ uid=[]
+ ),
+ desc.File(
+ name='mask',
+ label='Mask',
+ description='',
+ group='', # do not export on the command line
+ semantic='image',
+ value=desc.Node.internalFolder+'<VIEW_ID>_mask.exr',
+ uid=[]
+ ),
+ desc.File(
+ name='weight',
+ label='Weight',
+ description='',
+ group='', # do not export on the command line
+ semantic='image',
+ value=desc.Node.internalFolder+'<VIEW_ID>_weight.exr',
+ uid=[]
+ ),
]