Function opencv::cudaarithm::rect_std_dev
source · pub fn rect_std_dev(
src: &dyn ToInputArray,
sqr: &dyn ToInputArray,
dst: &mut dyn ToOutputArray,
rect: Rect,
stream: &mut Stream
) -> Result<()>
Expand description
Computes a standard deviation of integral images.
Parameters
- src: Source image. Only the CV_32SC1 type is supported.
- sqr: Squared source image. Only the CV_32FC1 type is supported.
- dst: Destination image with the same type and size as src.
- rect: Rectangular window.
- stream: Stream for the asynchronous version.
C++ default parameters
- stream: Stream::Null()