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

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

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

Usage Example

Пример #1
0
 /// <summary>
 ///  normalizes the histogram bins by scaling them, such that the sum of the bins becomes equal to factor
 /// </summary>
 /// <param name="factor">the sum of the bins after normalization</param>
 public void Normalize(double factor)
 {
     CvInvoke.cvNormalizeHist(Ptr, factor);
 }
CvInvoke