mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-05 01:38:23 +02:00
adding a node for rotating head xml
This commit is contained in:
parent
38d27c9d45
commit
ee6772b193
1 changed files with 47 additions and 0 deletions
47
meshroom/nodes/aliceVision/PanoramaExternalInfo.py
Normal file
47
meshroom/nodes/aliceVision/PanoramaExternalInfo.py
Normal file
|
@ -0,0 +1,47 @@
|
|||
__version__ = "1.0"
|
||||
|
||||
import json
|
||||
import os
|
||||
|
||||
from meshroom.core import desc
|
||||
|
||||
|
||||
class PanoramaExternalInfo(desc.CommandLineNode):
|
||||
commandLine = 'aliceVision_panoramaExternalInfo {allParams}'
|
||||
size = desc.DynamicNodeSize('input')
|
||||
|
||||
inputs = [
|
||||
desc.File(
|
||||
name='input',
|
||||
label='Input',
|
||||
description="SfM Data File",
|
||||
value='',
|
||||
uid=[0],
|
||||
),
|
||||
desc.File(
|
||||
name='config',
|
||||
label='Xml Config',
|
||||
description="XML Data File",
|
||||
value='',
|
||||
uid=[0],
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name='verboseLevel',
|
||||
label='Verbose Level',
|
||||
description='Verbosity level (fatal, error, warning, info, debug, trace).',
|
||||
value='info',
|
||||
values=['fatal', 'error', 'warning', 'info', 'debug', 'trace'],
|
||||
exclusive=True,
|
||||
uid=[],
|
||||
),
|
||||
]
|
||||
|
||||
outputs = [
|
||||
desc.File(
|
||||
name='outSfMDataFilename',
|
||||
label='Output SfMData File',
|
||||
description='Path to the output sfmdata file',
|
||||
value=desc.Node.internalFolder + 'sfmData.abc',
|
||||
uid=[],
|
||||
)
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue