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

private cvThreshHist ( IntPtr hist, double threshold ) : void
hist IntPtr
threshold double
Результат void
Пример #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);
 }