enum cv::ReduceTypes

Overview

#include <core.hpp>

enum ReduceTypes
{
    REDUCE_SUM = 0,
    REDUCE_AVG = 1,
    REDUCE_MAX = 2,
    REDUCE_MIN = 3,
};

Detailed Documentation

Enum Values

REDUCE_SUM

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

REDUCE_AVG

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

REDUCE_MAX

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

REDUCE_MIN

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