mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-02 08:18:25 +02:00
60 lines
1.7 KiB
Python
60 lines
1.7 KiB
Python
__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.ListAttribute(
|
|
elementDesc=desc.File(
|
|
name='matchesFolder',
|
|
label='Matches Folder',
|
|
description="",
|
|
value='',
|
|
uid=[0],
|
|
),
|
|
name='matchesFolders',
|
|
label='Matches Folders',
|
|
description="Folder(s) in which computed matches are stored. (WORKAROUND for valid Tractor graph submission)",
|
|
group='forDependencyOnly',
|
|
),
|
|
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=[],
|
|
)
|
|
]
|