Click or drag to resize

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
)

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