Skip to main content

meanblur

meanblur(img: np.ndarray, ksize: _Ksize = 3, **kwargs) -> np.ndarray

  • Description: Apply mean blur processing to the input image.

  • Parameters:

    • img (np.ndarray): Input image to be blurred.
    • ksize (Union[int, Tuple[int, int]]): Size of the kernel used for blurring. If an integer value is provided, a square kernel of the specified size is used. If a tuple (k_height, k_width) is provided, a rectangular kernel of the specified size is used. Default is 3.
  • Returns:

    • np.ndarray: Blurred image.
  • Example:

    import docsaidkit as D

    img = D.imread('lena.png')
    blur_img = D.meanblur(img, ksize=5)

    meanblur