OpenCvSharp.NativeMethods.core_FileStorage_writeScalar_int C# (CSharp) Method

core_FileStorage_writeScalar_int() private method

private core_FileStorage_writeScalar_int ( IntPtr fs, int value ) : void
fs System.IntPtr
value int
return void
        public static extern void core_FileStorage_writeScalar_int(IntPtr fs, int value);
        [DllImport(DllExtern, CallingConvention = CallingConvention.Cdecl)]

Usage Example

コード例 #1
0
ファイル: FileStorage.cs プロジェクト: zhaohh1985/opencvsharp
 /// <summary>
 ///
 /// </summary>
 /// <param name="value"></param>
 public void WriteScalar(int value)
 {
     ThrowIfDisposed();
     NativeMethods.HandleException(
         NativeMethods.core_FileStorage_writeScalar_int(ptr, value));
     GC.KeepAlive(this);
 }
All Usage Examples Of OpenCvSharp.NativeMethods::core_FileStorage_writeScalar_int
NativeMethods