Пример #1
0
 /// <summary>
 /// Copies the histogram. The method copies this histogram’s bin values to the
 /// destination histogram and sets the same bin value ranges as this instance.
 /// </summary>
 /// <param name="dst">The destination histogram.</param>
 public void Copy(out Histogram dst)
 {
     NativeMethods.cvCopyHist(this, out dst);
     dst.CreateBins(Type);
 }