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:
authorLoïc Vital <mugulmotion@gmail.com>2022-09-29 10:22:19 +0300
committerFabien Castan <fabcastan@gmail.com>2022-10-19 11:50:18 +0300
commit38b1caf647e1a74296c9201fafdd0ff3e20d88c5 (patch)
tree50e61764985ec49802301feff7dcf150193149ca
parenta94be6c6a0bd7b18cee3f641be51cad5bc5a638f (diff)
[node] PanoramaWarping: add visualization for mask and weight maps
-rw-r--r--meshroom/nodes/aliceVision/PanoramaWarping.py20
1 files changed, 19 insertions, 1 deletions
diff --git a/meshroom/nodes/aliceVision/PanoramaWarping.py b/meshroom/nodes/aliceVision/PanoramaWarping.py
index 507ad476..7710527a 100644
--- a/meshroom/nodes/aliceVision/PanoramaWarping.py
+++ b/meshroom/nodes/aliceVision/PanoramaWarping.py
@@ -99,11 +99,29 @@ Compute the image warping for each input image in the panorama coordinate system
),
desc.File(
name='warping',
- label='Image 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=[]
+ ),
]