Type used for cvReduce function

Namespace:  Emgu.CV.CvEnum
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public enum REDUCE_TYPE
Visual Basic (Declaration)
Public Enumeration REDUCE_TYPE
Visual C++
public enum class REDUCE_TYPE

Members

Member nameDescription
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

See Also