http://www.emgu.com
Type used for Reduce function
Namespace:
Emgu.CV.CvEnum
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
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