| ReduceTypes Enumeration |
The reduction operations for cvReduce
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax Public Enumeration ReduceTypes
public enum class ReduceTypes
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