unreal.BrownConradyUDDistortionParameters

class unreal.BrownConradyUDDistortionParameters(k1: float = 0.0, k2: float = 0.0, k3: float = 0.0, k4: float = 0.0, k5: float = 0.0, k6: float = 0.0, p1: float = 0.0, p2: float = 0.0)

Bases: StructBase

Brown-Conrady U-D lens distortion parameters (polynomial division model), using a polynomial division model: (1 + K1*r^2 + K2*r^4 + K3*r^6) / (1 + K4*r^2 + K5*r^4 + K6*r^6) where the output of that equation represents the distorted image coordinates.

C++ Source:

  • Plugin: CameraCalibrationCore

  • Module: CameraCalibrationCore

  • File: BrownConradyUDLensModel.h

Editor Properties: (see get_editor_property/set_editor_property)

  • k1 (float): [Read-Write] Radial coefficient of the r^2 term (numerator)

  • k2 (float): [Read-Write] Radial coefficient of the r^4 term (numerator)

  • k3 (float): [Read-Write] Radial coefficient of the r^6 term (numerator)

  • k4 (float): [Read-Write] Radial coefficient of the r^2 term (denominator)

  • k5 (float): [Read-Write] Radial coefficient of the r^4 term (denominator)

  • k6 (float): [Read-Write] Radial coefficient of the r^6 term (denominator)

  • p1 (float): [Read-Write] First tangential coefficient

  • p2 (float): [Read-Write] Second tangential coefficient

property k1: float

[Read-Write] Radial coefficient of the r^2 term (numerator)

Type:

(float)

property k2: float

[Read-Write] Radial coefficient of the r^4 term (numerator)

Type:

(float)

property k3: float

[Read-Write] Radial coefficient of the r^6 term (numerator)

Type:

(float)

property k4: float

[Read-Write] Radial coefficient of the r^2 term (denominator)

Type:

(float)

property k5: float

[Read-Write] Radial coefficient of the r^4 term (denominator)

Type:

(float)

property k6: float

[Read-Write] Radial coefficient of the r^6 term (denominator)

Type:

(float)

property p1: float

[Read-Write] First tangential coefficient

Type:

(float)

property p2: float

[Read-Write] Second tangential coefficient

Type:

(float)