Table of Contents

Enum ReduceTypes

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

The reduction operations for cvReduce

[SuppressMessage("Microsoft.Design", "CA1717: Only FlagsAttribute enums should have plural names")]
public enum ReduceTypes

Fields

Avg = 1

The output is the mean vector of all the matrix rows/columns.

Max = 2

The output is the maximum (column/row-wise) of all the matrix rows/columns.

Min = 3

The output is the minimum (column/row-wise) of all the matrix rows/columns.

Sum = 0

The output is the sum of all the matrix rows/columns.

Remarks