mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 10:17:27 +02:00
For nodes that were added right before the merge of #2629, the replacement still needed to be done.
67 lines
2.1 KiB
Python
67 lines
2.1 KiB
Python
__version__ = "1.0"
|
|
|
|
from meshroom.core import desc
|
|
from meshroom.core.utils import VERBOSE_LEVEL
|
|
|
|
class IntrinsicsTransforming(desc.AVCommandLineNode):
|
|
commandLine = 'aliceVision_intrinsicsTransforming {allParams}'
|
|
size = desc.DynamicNodeSize('input')
|
|
|
|
category = 'Utils'
|
|
documentation = '''
|
|
Transforms all intrinsics in the sfmData to a new type.
|
|
'''
|
|
|
|
inputs = [
|
|
desc.File(
|
|
name="input",
|
|
label="Input SfMData",
|
|
description="Input SfMData file.",
|
|
value="",
|
|
),
|
|
desc.File(
|
|
name="inputTracks",
|
|
label="Input Tracks",
|
|
description="Input Tracks file.",
|
|
value="",
|
|
),
|
|
desc.ChoiceParam(
|
|
name="type",
|
|
label="Camera Type",
|
|
description="Mathematical model used to represent a camera:\n"
|
|
" - pinhole: Simplest projective camera model without optical distortion "
|
|
"(focal and optical center).\n"
|
|
" - equirectangular: Projection model used in panoramas.\n",
|
|
value="pinhole",
|
|
values=["pinhole", "equidistant", "equirectangular"],
|
|
),
|
|
desc.FloatParam(
|
|
name="fakeFov",
|
|
label="Virtual FOV",
|
|
description="If the input intrinsic is not a pinhole but the output is, what is the virtual FOV requested.",
|
|
value=90.0,
|
|
range=(1.0, 179.0, 0.1),
|
|
),
|
|
desc.ChoiceParam(
|
|
name="verboseLevel",
|
|
label="Verbose Level",
|
|
description="Verbosity level (fatal, error, warning, info, debug, trace).",
|
|
values=VERBOSE_LEVEL,
|
|
value="info",
|
|
),
|
|
]
|
|
|
|
outputs = [
|
|
desc.File(
|
|
name="output",
|
|
label="Output SfMData",
|
|
description="Output SfMData file.",
|
|
value="{nodeCacheFolder}/sfmData.abc",
|
|
),
|
|
desc.File(
|
|
name="outputTracks",
|
|
label="Output Tracks",
|
|
description="Output Tracks file.",
|
|
value="{nodeCacheFolder}/tracksFile.json",
|
|
),
|
|
]
|