OpenCvSharp.NativeMethods.core_Mat_push_back_ushort C# (CSharp) Method

core_Mat_push_back_ushort() private method

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

Usage Example

コード例 #1
0
ファイル: MatOfUShort.cs プロジェクト: zjxbetter/opencvsharp
 /// <summary>
 /// Adds elements to the bottom of the matrix. (Mat::push_back)
 /// </summary>
 /// <param name="value">Added element(s)</param>
 public override void Add(ushort value)
 {
     ThrowIfDisposed();
     NativeMethods.core_Mat_push_back_ushort(ptr, value);
 }
All Usage Examples Of OpenCvSharp.NativeMethods::core_Mat_push_back_ushort
NativeMethods