Emgu.CV.CvInvoke.cvClearHist C# (CSharp) Method

cvClearHist() private method

private cvClearHist ( IntPtr hist ) : void
hist IntPtr
return void
        public static extern void cvClearHist(IntPtr hist);

Usage Example

コード例 #1
0
ファイル: DenseHistogram.cs プロジェクト: ssor/csharpDemos
 ///<summary>
 /// Clear this histogram
 ///</summary>
 public void Clear()
 {
     CvInvoke.cvClearHist(_ptr);
 }
CvInvoke