mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 10:17:27 +02:00
37 lines
841 B
Python
37 lines
841 B
Python
__version__ = "3.0"
|
|
|
|
from meshroom.core import desc
|
|
|
|
class NormalIntegration(desc.CommandLineNode):
|
|
commandLine = 'aliceVision_normalIntegration {allParams}'
|
|
category = 'Photometry'
|
|
documentation = '''
|
|
TODO.
|
|
'''
|
|
|
|
inputs = [
|
|
desc.File(
|
|
name='sfmDataFile',
|
|
label='sfmDataFile',
|
|
description='''SfMData file.''',
|
|
value='',
|
|
uid=[0],
|
|
),
|
|
desc.File(
|
|
name='inputPath',
|
|
label='inputPath',
|
|
description='Normal maps folder',
|
|
value='',
|
|
uid=[0]
|
|
)
|
|
]
|
|
|
|
outputs = [
|
|
desc.File(
|
|
name='outputPath',
|
|
label='Output path',
|
|
description='Path to the output folder',
|
|
value=desc.Node.internalFolder,
|
|
uid=[],
|
|
)
|
|
]
|