[sphereDetect] Add node

This commit is contained in:
Laureηt 2022-09-01 15:22:58 +02:00
parent a98424f7b5
commit 5d4f657688
No known key found for this signature in database
GPG key ID: D88C6B294FD40994

View file

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