mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-06 10:18:42 +02:00
[nodes] Improve labels and descriptions for distortion calibration nodes
This commit is contained in:
parent
e895808e92
commit
73332694fa
4 changed files with 11 additions and 11 deletions
|
@ -31,8 +31,8 @@ Overwrite intrinsics with a calibrated intrinsic.
|
|||
outputs = [
|
||||
desc.File(
|
||||
name='output',
|
||||
label='SfMData File.',
|
||||
description='Path to the output sfmData file.',
|
||||
label='SfMData File',
|
||||
description='Path to the output SfMData file.',
|
||||
value=desc.Node.internalFolder + 'sfmData.sfm',
|
||||
uid=[],
|
||||
),
|
||||
|
|
|
@ -89,12 +89,12 @@ Intrinsic = [
|
|||
name="distortionParams",
|
||||
elementDesc=desc.FloatParam(name="p", label="", description="", value=0.0, uid=[0], range=(-0.1, 0.1, 0.01)),
|
||||
label="Distortion Params",
|
||||
description="Distortion Parameters",
|
||||
description="Distortion parameters.",
|
||||
),
|
||||
desc.GroupAttribute(
|
||||
name="undistortionOffset",
|
||||
label="Undistortion Offset",
|
||||
description="Undistortion Offset",
|
||||
description="Undistortion offset.",
|
||||
groupDesc=[
|
||||
desc.FloatParam(name="x", label="x", description="", value=0.0, uid=[0], range=(0.0, 10000.0, 1.0)),
|
||||
desc.FloatParam(name="y", label="y", description="", value=0.0, uid=[0], range=(0.0, 10000.0, 1.0)),
|
||||
|
@ -104,7 +104,7 @@ Intrinsic = [
|
|||
name="undistortionParams",
|
||||
elementDesc=desc.FloatParam(name="p", label="", description="", value=0.0, uid=[0], range=(-0.1, 0.1, 0.01)),
|
||||
label="Undistortion Params",
|
||||
description="Undistortion Parameters"
|
||||
description="Undistortion parameters."
|
||||
),
|
||||
desc.BoolParam(name='locked', label='Locked',
|
||||
description='If the camera has been calibrated, the internal camera parameters (intrinsics) can be locked. It should improve robustness and speedup the reconstruction.',
|
||||
|
|
|
@ -15,14 +15,14 @@ Calibration of a camera/lens couple distortion using a full screen checkerboard.
|
|||
inputs = [
|
||||
desc.File(
|
||||
name='input',
|
||||
label='SfmData',
|
||||
description='SfmData File.',
|
||||
label='Input SfMData',
|
||||
description='SfMData file.',
|
||||
value='',
|
||||
uid=[0],
|
||||
),
|
||||
desc.File(
|
||||
name='checkerboards',
|
||||
label='Checkerboards folder',
|
||||
label='Checkerboards Folder',
|
||||
description='Folder containing checkerboard JSON files.',
|
||||
value='',
|
||||
uid=[0],
|
||||
|
@ -41,8 +41,8 @@ Calibration of a camera/lens couple distortion using a full screen checkerboard.
|
|||
outputs = [
|
||||
desc.File(
|
||||
name='output',
|
||||
label='SfmData File',
|
||||
description='Path to the output sfmData file.',
|
||||
label='SfMData File',
|
||||
description='Path to the output SfMData file.',
|
||||
value=desc.Node.internalFolder + 'sfmData.sfm',
|
||||
uid=[],
|
||||
)
|
||||
|
|
|
@ -24,7 +24,7 @@ Export the distortion model and parameters of cameras in a SfM scene.
|
|||
desc.File(
|
||||
name='output',
|
||||
label='Folder',
|
||||
description='',
|
||||
description='Output folder.',
|
||||
value=desc.Node.internalFolder,
|
||||
uid=[],
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue