[][src]Function opencv::cudaimgproc::even_levels

pub fn even_levels(
    levels: &mut dyn ToOutputArray,
    n_levels: i32,
    lower_level: i32,
    upper_level: i32,
    stream: &mut Stream
) -> Result<()>

Computes levels with even distribution.

Parameters

  • levels: Destination array. levels has 1 row, nLevels columns, and the CV_32SC1 type.
  • nLevels: Number of computed levels. nLevels must be at least 2.
  • lowerLevel: Lower boundary value of the lowest level.
  • upperLevel: Upper boundary value of the greatest level.
  • stream: Stream for the asynchronous version.

C++ default parameters

  • stream: Stream::Null()