Emgu.CV.CvInvoke.cvThreshHist C# (CSharp) Метод

cvThreshHist() приватный Метод

private cvThreshHist ( IntPtr hist, double threshold ) : void
hist IntPtr
threshold double
Результат void
        public static extern void cvThreshHist(IntPtr hist, double threshold);

Usage Example

Пример #1
0
 ///<summary>
 ///Clears histogram bins that are below the specified threshold.
 ///</summary>
 ///<param name="thresh">The threshold used to clear the bins</param>
 public void Threshold(double thresh)
 {
     CvInvoke.cvThreshHist(_ptr, thresh);
 }
CvInvoke