mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-18 09:07:18 +02:00
Move nodes into subfolders
This commit is contained in:
parent
85eff3509f
commit
aacdf32915
17 changed files with 23 additions and 11 deletions
42
meshroom/nodes/aliceVision/PrepareDenseScene.py
Normal file
42
meshroom/nodes/aliceVision/PrepareDenseScene.py
Normal file
|
@ -0,0 +1,42 @@
|
|||
from meshroom.core import desc
|
||||
|
||||
class PrepareDenseScene(desc.CommandLineNode):
|
||||
internalFolder = '{cache}/{nodeType}/{uid0}/'
|
||||
commandLine = 'openMVG_main_openMVG2CMPMVS2 {allParams}'
|
||||
|
||||
outdir = desc.FileAttribute(
|
||||
label='Outdir',
|
||||
description='''path Invalid command line parameter.''',
|
||||
value='{cache}/{nodeType}/{uid0}/',
|
||||
shortName='o',
|
||||
arg='',
|
||||
isOutput=True,
|
||||
)
|
||||
mvsConfig = desc.FileAttribute( # not a command line arg
|
||||
label='MVS Configuration file',
|
||||
description='',
|
||||
value='{cache}/{nodeType}/{uid0}/_tmp_scale{scaleValue}/mvs.ini',
|
||||
shortName='',
|
||||
arg='',
|
||||
group='',
|
||||
isOutput=True,
|
||||
)
|
||||
|
||||
sfmdata = desc.FileAttribute(
|
||||
label='Sfmdata',
|
||||
description='''filename, the SfM_Data file to convert''',
|
||||
value='',
|
||||
shortName='i',
|
||||
arg='',
|
||||
uid=[0],
|
||||
isOutput=False,
|
||||
)
|
||||
scale = desc.ParamAttribute(
|
||||
label='Scale',
|
||||
description='''downscale image factor''',
|
||||
value=2,
|
||||
shortName='s',
|
||||
arg='',
|
||||
uid=[0],
|
||||
isOutput=False,
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue