Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ExportColoredPointCloud.py « aliceVision « nodes « meshroom - github.com/alicevision/meshroom.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ab7855bff0f6320708be5cf64f028580d6a25f5 (plain)
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
37
38
__version__ = "1.0"

from meshroom.core import desc


class ExportColoredPointCloud(desc.CommandLineNode):
    commandLine = 'aliceVision_exportColoredPointCloud {allParams}'

    category = 'Export'

    inputs = [
        desc.File(
            name='input',
            label='Input SfMData',
            description='SfMData file containing a complete SfM.',
            value='',
            uid=[0],
        ),
        desc.ChoiceParam(
            name='verboseLevel',
            label='Verbose Level',
            description='Verbosity level (fatal, error, warning, info, debug, trace).',
            value='info',
            values=['fatal', 'error', 'warning', 'info', 'debug', 'trace'],
            exclusive=True,
            uid=[],
        ),
    ]

    outputs = [
        desc.File(
            name='output',
            label='Point Cloud Filepath',
            description='Output point cloud with visibilities as SfMData file.',
            value="{cache}/{nodeType}/{uid0}/pointCloud.abc",
            uid=[],
        ),
    ]