[][src]Function opencv::cudawarping::pyr_up

pub fn pyr_up(
    src: &dyn ToInputArray,
    dst: &mut dyn ToOutputArray,
    stream: &mut Stream
) -> Result<()>

Upsamples an image and then smoothes it.

Parameters

  • src: Source image.
  • dst: Destination image. Will have Size(src.cols*2, src.rows*2) size and the same type as src .
  • stream: Stream for the asynchronous version.

C++ default parameters

  • stream: Stream::Null()