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 = 1The output is the mean vector of all the matrix rows/columns.
Max = 2The output is the maximum (column/row-wise) of all the matrix rows/columns.
Min = 3The output is the minimum (column/row-wise) of all the matrix rows/columns.
Sum = 0The output is the sum of all the matrix rows/columns.