Skip to content

Commit

Permalink
[panorama] add debug capacities
Browse files Browse the repository at this point in the history
  • Loading branch information
servantftechnicolor authored and fabiencastan committed Jan 25, 2021
1 parent a1afd04 commit c416bf1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions meshroom/nodes/aliceVision/PanoramaCompositing.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,20 @@ class PanoramaCompositing(desc.CommandLineNode):
exclusive=True,
uid=[0],
),
desc.ChoiceParam(
name='overlayType',
label='Overlay Type',
description='Overlay on top of panorama to analyze transitions:\n'
' * none: no overlay\n'
' * borders: display image borders\n'
' * seams: display transitions between images\n'
' * all: display borders and seams\n',
value='none',
values=['none', 'borders', 'seams', 'all'],
exclusive=True,
advanced=True,
uid=[0]
),
desc.ChoiceParam(
name='verboseLevel',
label='Verbose Level',
Expand Down

0 comments on commit c416bf1

Please sign in to comment.