OpenCvSharp.NativeMethods.calib3d_findHomography_vector C# (CSharp) Method

calib3d_findHomography_vector() private method

private calib3d_findHomography_vector ( Point2d srcPoints, int srcPointsLength, Point2d dstPoints, int dstPointsLength, int method, double ransacReprojThreshold, IntPtr mask ) : IntPtr
srcPoints Point2d
srcPointsLength int
dstPoints Point2d
dstPointsLength int
method int
ransacReprojThreshold double
mask System.IntPtr
return System.IntPtr
        public static extern IntPtr calib3d_findHomography_vector(Point2d[] srcPoints, int srcPointsLength,
            Point2d[] dstPoints, int dstPointsLength, int method, double ransacReprojThreshold, IntPtr mask);
        [DllImport(DllExtern, CallingConvention = CallingConvention.Cdecl)]
NativeMethods