mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-22 19:17:16 +02:00
[nodes] New node ConvertAnimatedCamera
This commit is contained in:
parent
0291033b85
commit
32e94d27b7
1 changed files with 27 additions and 0 deletions
27
meshroom/nodes/aliceVision/ConvertAnimatedCamera.py
Normal file
27
meshroom/nodes/aliceVision/ConvertAnimatedCamera.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
import sys
|
||||
from meshroom.core import desc
|
||||
|
||||
|
||||
class ConvertAnimatedCamera(desc.CommandLineNode):
|
||||
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
||||
commandLine = 'aliceVision_convertAnimatedCamera {allParams}'
|
||||
|
||||
inputs = [
|
||||
desc.File(
|
||||
name='input',
|
||||
label='Input',
|
||||
description='''SfMData file.''',
|
||||
value='',
|
||||
uid=[0],
|
||||
),
|
||||
]
|
||||
|
||||
outputs = [
|
||||
desc.File(
|
||||
name='output',
|
||||
label='Output',
|
||||
description='''Path to the output Alembic file.''',
|
||||
value='{cache}/{nodeType}/{uid0}/animatedCamera.abc',
|
||||
uid=[],
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue