Function integral_def

Source
pub fn integral_def(
    src: &impl ToInputArray,
    sum: &mut impl ToOutputArray,
) -> Result<()>
Expand description

Computes an integral image.

§Parameters

  • src: Source image. Only CV_8UC1 images are supported for now.
  • sum: Integral image containing 32-bit unsigned integer values packed into CV_32SC1 .
  • stream: Stream for the asynchronous version.

§See also

integral

§Note

This alternative version of integral function uses the following default values for its arguments:

  • stream: Stream::Null()