|
|
|
@ -3270,7 +3270,14 @@ CV_EXPORTS void calcHist( const Mat* images, int nimages, |
|
|
|
|
const int* histSize, const float** ranges, |
|
|
|
|
bool uniform = true, bool accumulate = false ); |
|
|
|
|
|
|
|
|
|
/** @overload */ |
|
|
|
|
/** @overload
|
|
|
|
|
|
|
|
|
|
this variant supports only uniform histograms. |
|
|
|
|
|
|
|
|
|
ranges argument is either empty vector or a flattened vector of histSize.size()*2 elements |
|
|
|
|
(histSize.size() element pairs). The first and second elements of each pair specify the lower and |
|
|
|
|
upper boundaries. |
|
|
|
|
*/ |
|
|
|
|
CV_EXPORTS_W void calcHist( InputArrayOfArrays images, |
|
|
|
|
const std::vector<int>& channels, |
|
|
|
|
InputArray mask, OutputArray hist, |
|
|
|
|