Type used for cvReduce function
| C# | Visual Basic | Visual C++ |
public enum REDUCE_TYPE
Public Enumeration REDUCE_TYPE
public enum class REDUCE_TYPE
| Member | Description |
|---|---|
| CV_REDUCE_SUM |
The output is the sum of all the matrix rows/columns
|
| CV_REDUCE_AVG |
The output is the mean vector of all the matrix rows/columns
|
| CV_REDUCE_MAX |
The output is the maximum (column/row-wise) of all the matrix rows/columns
|
| CV_REDUCE_MIN |
The output is the minimum (column/row-wise) of all the matrix rows/columns
|