[][src]Function opencv::cudaarithm::norm_1

pub fn norm_1(
    src1: &dyn ToInputArray,
    src2: &dyn ToInputArray,
    norm_type: i32
) -> Result<f64>

Returns the difference of two matrices.

Parameters

  • src1: Source matrix. Any matrices except 64F are supported.
  • src2: Second source matrix (if any) with the same size and type as src1.
  • normType: Norm type. NORM_L1 , NORM_L2 , and NORM_INF are supported for now.

See also

norm

C++ default parameters

  • norm_type: NORM_L2