mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-06 02:08:25 +02:00
34 lines
847 B
Python
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]
|
|
),
|
|
]
|