http://www.emgu.com
Type used for cvReduce function
Namespace: Emgu.CV.CvEnumAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
SyntaxPublic Enumeration ReduceType
public enum class ReduceType
Members
| Member name | Value | Description |
---|
| ReduceSum | 0 |
The output is the sum of all the matrix rows/columns
|
| ReduceAvg | 1 |
The output is the mean vector of all the matrix rows/columns
|
| ReduceMax | 2 |
The output is the maximum (column/row-wise) of all the matrix rows/columns
|
| ReduceMin | 3 |
The output is the minimum (column/row-wise) of all the matrix rows/columns
|
See Also