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

cvCreateHist() публичный статический Метод

Creates a histogram of the specified size and returns the pointer to the created histogram. If the array ranges is 0, the histogram bin ranges must be specified later via The function cvSetHistBinRanges, though cvCalcHist and cvCalcBackProject may process 8-bit images without setting bin ranges, they assume equally spaced in 0..255 bins
public static cvCreateHist ( int dims, [ sizes, CvEnum type, [ ranges, bool uniform ) : IntPtr
dims int Number of histogram dimensions
sizes [ Array of histogram dimension sizes
type CvEnum Histogram representation format: CV_HIST_ARRAY means that histogram data is represented as an multi-dimensional dense array CvMatND; CV_HIST_SPARSE means that histogram data is represented as a multi-dimensional sparse array CvSparseMat
ranges [ Array of ranges for histogram bins. Its meaning depends on the uniform parameter value. The ranges are used for when histogram is calculated or backprojected to determine, which histogram bin corresponds to which value/tuple of values from the input image[s].
uniform bool /// Uniformity flag; /// if true, the histogram has evenly spaced bins and for every 0<=i<cDims ranges[i] is array of two numbers: lower and upper boundaries for the i-th histogram dimension. /// The whole range [lower,upper] is split then into dims[i] equal parts to determine i-th input tuple value ranges for every histogram bin. /// And if uniform=false, then i-th element of ranges array contains dims[i]+1 elements: lower0, upper0, lower1, upper1 == lower2, ..., upperdims[i]-1, where lowerj and upperj are lower and upper boundaries of i-th input tuple value for j-th bin, respectively. /// In either case, the input values that are beyond the specified range for a histogram bin, are not counted by cvCalcHist and filled with 0 by cvCalcBackProject ///
Результат IntPtr
        public static IntPtr cvCreateHist(
         int dims,
         [In]
         int[] sizes,
         CvEnum.HIST_TYPE type,
         [In]
         IntPtr[] ranges,
         bool uniform)
        {
            return cvCreateHist(dims, sizes, type, ranges, uniform ? 1 : 0);
        }

Same methods

CvInvoke::cvCreateHist ( int dims, [ sizes, CvEnum type, [ ranges, int uniform ) : IntPtr
CvInvoke