ReduceOperation Enumeration OpenCvSharp Class Library
The reduction operations for cvReduce

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public enum ReduceOperation
Members

  Member nameValueDescription
Sum0 The output is the sum of all the matrix rows/columns. [CV_REDUCE_SUM]
Avg1 The output is the mean vector of all the matrix rows/columns. [CV_REDUCE_AVG]
Max2 The output is the maximum (column/row-wise) of all the matrix rows/columns. [CV_REDUCE_MAX]
Min3 The output is the minimum (column/row-wise) of all the matrix rows/columns. [CV_REDUCE_MIN]
See Also

Reference