OpenCvSharp.NativeMethods.vector_vector_DMatch_getSize1 C# (CSharp) Method

vector_vector_DMatch_getSize1() private method

private vector_vector_DMatch_getSize1 ( IntPtr vector ) : IntPtr
vector IntPtr
return IntPtr
        public static extern IntPtr vector_vector_DMatch_getSize1(IntPtr vector);
        [DllImport(DllExtern, CallingConvention = CallingConvention.Cdecl)]

Usage Example

コード例 #1
0
        /// <summary>
        /// vector.size()
        /// </summary>
        public int GetSize1()
        {
            var res = NativeMethods.vector_vector_DMatch_getSize1(ptr).ToInt32();

            GC.KeepAlive(this);
            return(res);
        }
NativeMethods