[nodes] new ExportDistortion node

This commit is contained in:
Loïc Vital 2023-03-03 15:50:14 +01:00 committed by Candice Bentéjac
parent 69887aecc3
commit b6d15b911f

View file

@ -0,0 +1,31 @@
__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=[],
),
]