Click or drag to resize

Cv2InitCameraMatrix2D Method (IEnumerableMat, IEnumerableMat, Size, Double)

initializes camera matrix from a few 3D points and the corresponding projections.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntax
public static Mat InitCameraMatrix2D(
	IEnumerable<Mat> objectPoints,
	IEnumerable<Mat> imagePoints,
	Size imageSize,
	double aspectRatio = 1
)

Parameters

objectPoints
Type: System.Collections.GenericIEnumerableMat
Vector of vectors (vector<vector<Point3d>>) of the calibration pattern points in the calibration pattern coordinate space. In the old interface all the per-view vectors are concatenated.
imagePoints
Type: System.Collections.GenericIEnumerableMat
Vector of vectors (vector<vector<Point2d>>) of the projections of the calibration pattern points. In the old interface all the per-view vectors are concatenated.
imageSize
Type: OpenCvSharpSize
Image size in pixels used to initialize the principal point.
aspectRatio (Optional)
Type: SystemDouble
If it is zero or negative, both f_x and f_y are estimated independently. Otherwise, f_x = f_y * aspectRatio .

Return Value

Type: Mat
See Also