mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 16:58:24 +02:00
61 lines
1.6 KiB
Python
61 lines
1.6 KiB
Python
__version__ = "3.0"
|
|
|
|
from meshroom.core import desc
|
|
|
|
class PhotometricStereo(desc.CommandLineNode):
|
|
commandLine = 'aliceVision_photometricStereo {allParams}'
|
|
category = 'Photometry'
|
|
documentation = '''
|
|
TODO.
|
|
'''
|
|
|
|
inputs = [
|
|
desc.File(
|
|
name='inputPath',
|
|
label='SfmData',
|
|
description='Input file. Coulb be SfMData file or folder.',
|
|
value='',
|
|
uid=[0],
|
|
),
|
|
desc.File(
|
|
name='maskPath',
|
|
label='Mask folder path',
|
|
description='Mask folder path',
|
|
value='',
|
|
uid=[0],
|
|
),
|
|
desc.File(
|
|
name='pathToJSONLightFile',
|
|
label='Lights Folder',
|
|
description='Folder containing lighting information.',
|
|
value='',
|
|
uid=[0]
|
|
),
|
|
desc.IntParam(
|
|
name='HSOrder',
|
|
label='HS order',
|
|
description='Order of the spherical harmonics. ',
|
|
value=0,
|
|
range=(0, 2, 1),
|
|
uid=[0],
|
|
advanced=True,
|
|
)
|
|
]
|
|
|
|
outputs = [
|
|
desc.File(
|
|
name='outputSfmData',
|
|
label='SfmData',
|
|
description='Path to the output folder',
|
|
value=desc.Node.internalFolder + '/sfmData.sfm',
|
|
uid=[],
|
|
group='', # remove from command line
|
|
),
|
|
desc.File(
|
|
name='outputPath',
|
|
label='Output Folder',
|
|
description='Path to the output folder',
|
|
value=desc.Node.internalFolder,
|
|
uid=[],
|
|
),
|
|
]
|