mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-29 14:37:26 +02:00
[photometricStereo] Add nodes for PS
This commit is contained in:
parent
cef8cf6fd8
commit
1f4976610c
3 changed files with 147 additions and 0 deletions
37
meshroom/nodes/aliceVision/NormalIntegration.py
Normal file
37
meshroom/nodes/aliceVision/NormalIntegration.py
Normal file
|
@ -0,0 +1,37 @@
|
|||
__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=[],
|
||||
)
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue