mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-04 09:18:27 +02:00
[sphereDetect] Add node
This commit is contained in:
parent
a98424f7b5
commit
5d4f657688
1 changed files with 34 additions and 0 deletions
34
meshroom/nodes/aliceVision/SphereDetection.py
Normal file
34
meshroom/nodes/aliceVision/SphereDetection.py
Normal 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]
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue