Meshroom/meshroom/nodes/aliceVision/SphereDetection.py
2022-09-01 15:22:58 +02:00

34 lines
847 B
Python

__version__ = "1.0"
from meshroom.core import desc
class SphereDetection(desc.CommandLineNode):
commandLine = 'aliceVision_sphereDetection {allParams}'
category = 'Photometry'
documentation = '''
TODO.
'''
inputs = [
desc.StringParam(
name='input_model_path',
label='Model file',
description='Model file path',
value='',
uid=[],
),
desc.StringParam(
name='output_path',
label='Output folder',
description='Path to interal output folder',
value=desc.Node.internalFolder,
uid=[],
),
desc.File(
name='input_sfmdata_path',
label='SFMData',
description='Path to input SFMData',
value='',
uid=[0]
),
]