mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 08:48:40 +02:00
[cameraInit] Add initDistoMode info in intrinsics.
This commit is contained in:
parent
b4fa258f4e
commit
811d33eb89
1 changed files with 15 additions and 2 deletions
|
@ -65,10 +65,9 @@ Intrinsic = [
|
|||
description="Defines how this Intrinsic was initialized:\n"
|
||||
" * calibrated: calibrated externally.\n"
|
||||
" * estimated: estimated from metadata and/or sensor width \n"
|
||||
" * lcp: Lens Camera Profile from a database of generic calibrations \n"
|
||||
" * unknown: unknown camera parameters (can still have default value guess)\n"
|
||||
" * none: not set",
|
||||
values=("calibrated", "estimated", "lcp", "unknown", "none"),
|
||||
values=("calibrated", "estimated", "unknown", "none"),
|
||||
value="none",
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
|
@ -81,6 +80,20 @@ Intrinsic = [
|
|||
label="Distortion Params",
|
||||
description="Distortion Parameters",
|
||||
),
|
||||
|
||||
desc.ChoiceParam(name="distoInitializationMode", label="Disto Initialization Mode",
|
||||
description="Defines how this Intrinsic was initialized:\n"
|
||||
" * calibrated: calibrated externally.\n"
|
||||
" * estimated: estimated from metadata and/or sensor width \n"
|
||||
" * unknown: unknown camera parameters (can still have default value guess)\n"
|
||||
" * none: not set",
|
||||
values=("calibrated", "estimated", "unknown", "none"),
|
||||
value="none",
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
advanced=True
|
||||
),
|
||||
|
||||
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.',
|
||||
value=False, uid=[0]),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue