| Cv2FishEyeDistortPoints Method |
Distorts 2D points using fisheye model.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static void DistortPoints(
InputArray undistorted,
OutputArray distorted,
InputArray k,
InputArray d,
double alpha = 0
)
Public Shared Sub DistortPoints (
undistorted As InputArray,
distorted As OutputArray,
k As InputArray,
d As InputArray,
Optional alpha As Double = 0
)
public:
static void DistortPoints(
InputArray^ undistorted,
OutputArray^ distorted,
InputArray^ k,
InputArray^ d,
double alpha = 0
)
static member DistortPoints :
undistorted : InputArray *
distorted : OutputArray *
k : InputArray *
d : InputArray *
?alpha : float
(* Defaults:
let _alpha = defaultArg alpha 0
*)
-> unit
Parameters
- undistorted
- Type: OpenCvSharpInputArray
Array of object points, 1xN/Nx1 2-channel (or vector<Point2f> ),
where N is the number of points in the view. - distorted
- Type: OpenCvSharpOutputArray
Output array of image points, 1xN/Nx1 2-channel, or vector<Point2f> . - k
- Type: OpenCvSharpInputArray
Camera matrix - d
- Type: OpenCvSharpInputArray
Input vector of distortion coefficients - alpha (Optional)
- Type: SystemDouble
The skew coefficient.
See Also