Type used for cvReduce function

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public enum REDUCE_TYPE
Public Enumeration REDUCE_TYPE
public enum class REDUCE_TYPE

Members

MemberDescription
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