Click or drag to resize

NativeMethodscalib3d_stereoRectify_array Method

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntax
[DllImportAttribute("OpenCvSharpExtern", CallingConvention = CallingConvention.Cdecl, 
	ExactSpelling = true)]
public static void calib3d_stereoRectify_array(
	double[,] cameraMatrix1,
	double[] distCoeffs1,
	int dc1Size,
	double[,] cameraMatrix2,
	double[] distCoeffs2,
	int dc2Size,
	Size imageSize,
	double[,] R,
	double[] T,
	double[,] R1,
	double[,] R2,
	double[,] P1,
	double[,] P2,
	double[,] Q,
	int flags,
	double alpha,
	Size newImageSize,
	out Rect validPixROI1,
	out Rect validPixROI2
)

Parameters

cameraMatrix1
Type: SystemDouble
distCoeffs1
Type: SystemDouble
dc1Size
Type: SystemInt32
cameraMatrix2
Type: SystemDouble
distCoeffs2
Type: SystemDouble
dc2Size
Type: SystemInt32
imageSize
Type: OpenCvSharpSize
R
Type: SystemDouble
T
Type: SystemDouble
R1
Type: SystemDouble
R2
Type: SystemDouble
P1
Type: SystemDouble
P2
Type: SystemDouble
Q
Type: SystemDouble
flags
Type: SystemInt32
alpha
Type: SystemDouble
newImageSize
Type: OpenCvSharpSize
validPixROI1
Type: OpenCvSharpRect
validPixROI2
Type: OpenCvSharpRect
See Also