mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-01 02:12:04 +02:00
31 lines
682 B
Python
31 lines
682 B
Python
__version__ = "1.0"
|
|
|
|
from meshroom.core import desc
|
|
|
|
class ExportDistortion(desc.AVCommandLineNode):
|
|
commandLine = 'aliceVision_exportDistortion {allParams}'
|
|
|
|
category = 'Export'
|
|
documentation = '''
|
|
Export the distortion model and parameters of cameras in a SfM scene.
|
|
'''
|
|
|
|
inputs = [
|
|
desc.File(
|
|
name='input',
|
|
label='Input SfMData',
|
|
description='SfMData file.',
|
|
value='',
|
|
uid=[0],
|
|
),
|
|
]
|
|
|
|
outputs = [
|
|
desc.File(
|
|
name='output',
|
|
label='Folder',
|
|
description='',
|
|
value=desc.Node.internalFolder,
|
|
uid=[],
|
|
),
|
|
]
|