The reduction operations for cvReduce
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
SyntaxPublic Enumeration ReduceTypes
public enum class ReduceTypes
OpenCvSharp.ReduceTypes = function();
OpenCvSharp.ReduceTypes.createEnum('OpenCvSharp.ReduceTypes', false); Members
Members|  | Member name | Value | Description | 
|---|
|  | Sum | 0 | The output is the sum of all the matrix rows/columns. | 
|  | Avg | 1 | The output is the mean vector of all the matrix rows/columns. | 
|  | Max | 2 | The output is the maximum (column/row-wise) of all the matrix rows/columns. | 
|  | Min | 3 | The output is the minimum (column/row-wise) of all the matrix rows/columns. | 
 See Also
See Also