Enum opencv::core::ReduceTypes [−][src]
#[repr(C)]
pub enum ReduceTypes {
REDUCE_SUM,
REDUCE_AVG,
REDUCE_MAX,
REDUCE_MIN,
}
Variants
the output is the sum of all rows/columns of the matrix.
the output is the mean vector of all rows/columns of the matrix.
the output is the maximum (column/row-wise) of all rows/columns of the matrix.
the output is the minimum (column/row-wise) of all rows/columns of the matrix.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ReduceTypes
impl Send for ReduceTypes
impl Sync for ReduceTypes
impl Unpin for ReduceTypes
impl UnwindSafe for ReduceTypes
Blanket Implementations
Mutably borrows from an owned value. Read more