OpenCvSharp.NativeMethods.core_Mat_push_back_Point3i C# (CSharp) Method

core_Mat_push_back_Point3i() private method

private core_Mat_push_back_Point3i ( IntPtr self, Point3i v ) : void
self IntPtr
v Point3i
return void
        public static extern void core_Mat_push_back_Point3i(IntPtr self, Point3i v);
        [DllImport(DllExtern, CallingConvention = CallingConvention.Cdecl)]

Usage Example

コード例 #1
0
 /// <summary>
 /// Adds elements to the bottom of the matrix. (Mat::push_back)
 /// </summary>
 /// <param name="value">Added element(s)</param>
 public override void Add(Point3i value)
 {
     ThrowIfDisposed();
     NativeMethods.core_Mat_push_back_Point3i(ptr, value);
     GC.KeepAlive(this);
 }
All Usage Examples Of OpenCvSharp.NativeMethods::core_Mat_push_back_Point3i
NativeMethods