Click or drag to resize

ReduceTypes Enumeration

The reduction operations for cvReduce

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public enum ReduceTypes
Members
  Member nameValueDescription
Sum0 The output is the sum of all the matrix rows/columns.
Avg1 The output is the mean vector of all the matrix rows/columns.
Max2 The output is the maximum (column/row-wise) of all the matrix rows/columns.
Min3 The output is the minimum (column/row-wise) of all the matrix rows/columns.
See Also