OpenCvSharp.NativeMethods.core_Mat_push_back_uchar C# (CSharp) Method

core_Mat_push_back_uchar() private method

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