mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-01 15:58:36 +02:00
[nodes] new ExportDistortion node
This commit is contained in:
parent
69887aecc3
commit
b6d15b911f
1 changed files with 31 additions and 0 deletions
31
meshroom/nodes/aliceVision/ExportDistortion.py
Normal file
31
meshroom/nodes/aliceVision/ExportDistortion.py
Normal 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=[],
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue