Skip to content

Commit

Permalink
[nodes] PanoramaInit: New parameter to set an extra image rotation to…
Browse files Browse the repository at this point in the history
… each camera declared the input xml (#1046)

Add XML additional input angle
  • Loading branch information
Fabien Servant committed Sep 2, 2020
1 parent cb00021 commit d215aa1
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 @@ -90,6 +90,15 @@ class PanoramaInit(desc.CommandLineNode):
uid=[0],
enabled=lambda node: node.useFisheye.value and not node.estimateFisheyeCircle.value,
),
desc.ChoiceParam(
name='inputAngle',
label='input Angle offset',
description='Add a rotation to the input XML given poses.',
value='None',
values=['None', 'rotate90', 'rotate180', 'rotate270'],
exclusive=True,
uid=[0]
),
desc.ChoiceParam(
name='verboseLevel',
label='Verbose Level',
Expand Down

0 comments on commit d215aa1

Please sign in to comment.