ndimage
ndimage is a subpackage of SciPy that provides a suite of image processing and analysis tools for multi-dimensional arrays. It is designed to work with NumPy arrays and supports images of arbitrary dimensionality, with common use in 2D and 3D imaging tasks.
The module includes routines for filtering and smoothing (gaussian_filter, median_filter, uniform_filter, minimum_filter, maximum_filter), convolution and correlation
ndimage operates on NumPy arrays in N dimensions and supports various boundary handling modes (such as reflect,
As part of the SciPy ecosystem, ndimage is widely used in image processing, computer vision, medical imaging,