-
Notifications
You must be signed in to change notification settings - Fork 7
/
Convert2PMVS.py
36 lines (29 loc) · 959 Bytes
/
Convert2PMVS.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# MR Sfm node -> convert2PMVS (draft, WIP)
# Optional parameters:
# --resolution arg (=1) Divide image coefficient
# --nbCore arg (=8) Nb core
# --useVisData arg (=1) Use visibility information.
# Log parameters:
# -v [ --verboseLevel ] arg (=info) verbosity level (fatal, error, warning, info, debug, trace).
__version__ = "1.1"
from meshroom.core import desc
class Convert2PMVS(desc.CommandLineNode):
commandLine = 'aliceVision_exportPMVS {allParams}'
inputs = [
desc.File(
name="input",
label="Input",
description="SFMData input",
value="",
uid=[0],
)
]
outputs = [
desc.File(
name="output",
label="Output Folder",
description="Output path for keypoints",
value=desc.Node.internalFolder,
uid=[0],
)
]