OpenCvSharp.NativeMethods.core_Mat_push_back_Vec3b C# (CSharp) Method

core_Mat_push_back_Vec3b() private method

private core_Mat_push_back_Vec3b ( IntPtr self, Vec3b v ) : void
self IntPtr
v Vec3b
return void
        public static extern void core_Mat_push_back_Vec3b(IntPtr self, Vec3b 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(Vec3b value)
 {
     ThrowIfDisposed();
     NativeMethods.core_Mat_push_back_Vec3b(ptr, value);
 }
All Usage Examples Of OpenCvSharp.NativeMethods::core_Mat_push_back_Vec3b
NativeMethods