OpenCvSharp.NativeMethods.core_FileStorage_writeScalar_double C# (CSharp) Method

core_FileStorage_writeScalar_double() private method

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

Usage Example

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