Enum ReduceOperation
Specifies the matrix reduction operation.
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum ReduceOperation : int
Fields
Name | Description |
---|---|
Avg | Specifies that the output is the mean vector of all of the matrix rows/columns. |
Max | Specifies that the output is the maximum (column/row-wise) of all of the matrix rows/columns. |
Min | Specifies that the output is the minimum (column/row-wise) of all of the matrix rows/columns. |
Sum | Specifies that the output is the sum of all the matrix rows/columns. |