Skip to content

Commit

Permalink
Merge pull request #1945 from alicevision/dev/contactSheet
Browse files Browse the repository at this point in the history
[panorama] option to build contact sheet
  • Loading branch information
cbentejac authored Apr 27, 2023
2 parents a3bab6c + a9a3c7b commit 1dc490c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions meshroom/nodes/aliceVision/PanoramaInit.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,15 @@ class PanoramaInit(desc.AVCommandLineNode):
uid=[0],
enabled=lambda node: ('Horizontal' in node.initializeCameras.value) or (node.initializeCameras.value == "Spherical"),
),
desc.BoolParam(
name='buildContactSheet',
label='Build Contact Sheet',
description='Build the contact sheet for the panorama if an XML data file is provided.\n'
'The contact sheet consists in a preview of the panorama using the input images.',
value=True,
uid=[0],
enabled=lambda node: node.config.enabled and node.config.value != ''
),
desc.ListAttribute(
elementDesc=desc.IntParam(
name='nbViews',
Expand Down

0 comments on commit 1dc490c

Please sign in to comment.