OpenCvSharp.NativeMethods.calib3d_stereoRectifyUncalibrated_array C# (CSharp) Method

calib3d_stereoRectifyUncalibrated_array() private method

private calib3d_stereoRectifyUncalibrated_array ( Point2d points1, int points1Size, Point2d points2, int points2Size, [ F, Size imgSize, [ H1, [ H2, double threshold ) : int
points1 Point2d
points1Size int
points2 Point2d
points2Size int
F [
imgSize Size
H1 [
H2 [
threshold double
return int
        public static extern int calib3d_stereoRectifyUncalibrated_array(
            Point2d[] points1, int points1Size,
            Point2d[] points2, int points2Size,
            [In] double[,] F, Size imgSize,
            [In, Out] double[,] H1, [In, Out] double[,] H2,
            double threshold);
NativeMethods