The reduction operations for cvReduce
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
Sum | 0 | The output is the sum of all the matrix rows/columns. [CV_REDUCE_SUM] | |
Avg | 1 | The output is the mean vector of all the matrix rows/columns. [CV_REDUCE_AVG] | |
Max | 2 | The output is the maximum (column/row-wise) of all the matrix rows/columns. [CV_REDUCE_MAX] | |
Min | 3 | The output is the minimum (column/row-wise) of all the matrix rows/columns. [CV_REDUCE_MIN] |
See Also