Click or drag to resize

NativeMethods.calib3d_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:System.Double[,]
distCoeffs1
Type:System.Double[]
dc1Size
Type: System.Int32
cameraMatrix2
Type:System.Double[,]
distCoeffs2
Type:System.Double[]
dc2Size
Type: System.Int32
imageSize
Type: OpenCvSharp.Size
R
Type:System.Double[,]
T
Type:System.Double[]
R1
Type:System.Double[,]
R2
Type:System.Double[,]
P1
Type:System.Double[,]
P2
Type:System.Double[,]
Q
Type:System.Double[,]
flags
Type: System.Int32
alpha
Type: System.Double
newImageSize
Type: OpenCvSharp.Size
validPixROI1
Type: OpenCvSharp.Rect
validPixROI2
Type: OpenCvSharp.Rect
See Also