Browse Source

Merge pull request #301 from ThomVett/master

Changing CalcHist documentation to reflect data types that are accept…
pull/348/head
Emgu CV 5 years ago
committed by GitHub
parent
commit
0280d5ca39
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Emgu.CV/PInvoke/CvInvokeImgproc.cs

2
Emgu.CV/PInvoke/CvInvokeImgproc.cs

@ -2107,7 +2107,7 @@ namespace Emgu.CV
/// <summary>
/// Calculates a histogram of a set of arrays.
/// </summary>
/// <param name="images">Source arrays. They all should have the same depth, CV_8U or CV_32F , and the same size. Each of them can have an arbitrary number of channels.</param>
/// <param name="images">Source arrays. They all should have the same depth, CV_8U, CV_16U or CV_32F , and the same size. Each of them can have an arbitrary number of channels.</param>
/// <param name="channels">List of the channels used to compute the histogram. </param>
/// <param name="mask">Optional mask. If the matrix is not empty, it must be an 8-bit array of the same size as images[i] . The non-zero mask elements mark the array elements counted in the histogram.</param>
/// <param name="hist">Output histogram</param>

Loading…
Cancel
Save