mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-22 21:46:28 +02:00
[nodes] renamed IntrinsicsCalibration to CheckerboardCalibration
This commit is contained in:
parent
a931e1b4e2
commit
13b76f4be3
1 changed files with 2 additions and 2 deletions
|
@ -1,57 +0,0 @@
|
|||
__version__ = '1.0'
|
||||
|
||||
from meshroom.core import desc
|
||||
|
||||
|
||||
class IntrinsicsCalibration(desc.AVCommandLineNode):
|
||||
commandLine = 'aliceVision_intrinsicsCalibration {allParams}'
|
||||
size = desc.DynamicNodeSize('input')
|
||||
|
||||
category = 'Other'
|
||||
documentation = '''
|
||||
Estimate the camera intrinsics and extrinsincs on a set of checkerboard images.
|
||||
'''
|
||||
|
||||
inputs = [
|
||||
desc.File(
|
||||
name="input",
|
||||
label="Input SfMData",
|
||||
description="SfMData file.",
|
||||
value="",
|
||||
uid=[0],
|
||||
),
|
||||
desc.File(
|
||||
name="checkerboards",
|
||||
label="Checkerboards Folder",
|
||||
description="Folder containing checkerboard JSON files.",
|
||||
value="",
|
||||
uid=[0],
|
||||
),
|
||||
desc.FloatParam(
|
||||
name="squareSize",
|
||||
label="Square Size",
|
||||
description="Checkerboard square width in mm",
|
||||
value=10.,
|
||||
range=(0.1, 100., 0.1),
|
||||
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="SfMData File",
|
||||
description="Path to the output SfMData file.",
|
||||
value=desc.Node.internalFolder + "sfmData.sfm",
|
||||
uid=[],
|
||||
)
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue