Navigation
API > API/Plugins > API/Plugins/CameraCalibrationCore
Spherical lens distortion parameters All parameters are unitless and represent the coefficients used to undistort a distorted image Refer to the OpenCV camera calibration documentation for the intended units/usage of these parameters: https://docs.opencv.org/3.4/d9/d0c/group__calib3d.html
| Name | FSphericalDistortionParameters |
| Type | struct |
| Header File | /Engine/Plugins/VirtualProduction/CameraCalibrationCore/Source/CameraCalibrationCore/Public/Models/SphericalLensModel.h |
| Include Path | #include "Models/SphericalLensModel.h" |
Syntax
USTRUCT (BlueprintType )
struct FSphericalDistortionParameters
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| K1 | float | Radial coefficient of the r^2 term | Models/SphericalLensModel.h |
|
| K2 | float | Radial coefficient of the r^4 term | Models/SphericalLensModel.h |
|
| K3 | float | Radial coefficient of the r^6 term | Models/SphericalLensModel.h |
|
| P1 | float | First tangential coefficient | Models/SphericalLensModel.h |
|
| P2 | float | Second tangential coefficient | Models/SphericalLensModel.h |
|