OpenCvSharp.NativeMethods.calib3d_stereoCalibrate_InputArray C# (CSharp) Method

calib3d_stereoCalibrate_InputArray() private method

private calib3d_stereoCalibrate_InputArray ( IntPtr objectPoints, int opSize, IntPtr imagePoints1, int ip1Size, IntPtr imagePoints2, int ip2Size, IntPtr cameraMatrix1, IntPtr distCoeffs1, IntPtr cameraMatrix2, IntPtr distCoeffs2, Size imageSize, IntPtr R, IntPtr T, IntPtr E, IntPtr F, int flags, OpenCvSharp.TermCriteria criteria ) : double
objectPoints System.IntPtr
opSize int
imagePoints1 System.IntPtr
ip1Size int
imagePoints2 System.IntPtr
ip2Size int
cameraMatrix1 System.IntPtr
distCoeffs1 System.IntPtr
cameraMatrix2 System.IntPtr
distCoeffs2 System.IntPtr
imageSize Size
R System.IntPtr
T System.IntPtr
E System.IntPtr
F System.IntPtr
flags int
criteria OpenCvSharp.TermCriteria
return double
        public static extern double calib3d_stereoCalibrate_InputArray(
            IntPtr[] objectPoints, int opSize,
            IntPtr[] imagePoints1, int ip1Size,
            IntPtr[] imagePoints2, int ip2Size,
            IntPtr cameraMatrix1,
            IntPtr distCoeffs1,
            IntPtr cameraMatrix2,
            IntPtr distCoeffs2,
            Size imageSize,
            IntPtr R, IntPtr T,
            IntPtr E, IntPtr F,
            int flags, TermCriteria criteria);
NativeMethods