Crate ndarray_ndimage

Source
Expand description

The ndarray-image crate provides multidimensional image processing for ArrayBase, the n-dimensional array data structure provided by ndarray.

Enums§

BorderMode
Method that will be used to determines how the input array is extended beyond its boundaries.
Kernel3d
3D common kernels. Also called Structuring Element.
PadMode
Method that will be used to select the padded values.

Functions§

array_like
Utility function that returns a new n-dimensional array of dimension shape with the same datatype and memory order as the input arr.
binary_closing
Binary closing of a 3D binary image.
binary_dilation
Binary dilation of a 3D binary image.
binary_erosion
Binary erosion of a 3D binary image.
binary_opening
Binary opening of a 3D binary image.
convolve
Multidimensional convolution.
convolve1d
Calculate a 1-D convolution along the given axis.
correlate
Multidimensional correlation.
correlate1d
Calculate a 1-D correlation along the given axis.
dim_minus
Utilitary function that returns the mask dimension minus 1 on all dimensions.
gaussian_filter
Gaussian filter for n-dimensional arrays.
gaussian_filter1d
Gaussian filter for 1-dimensional arrays.
label
Labels features of 3D binary images.
label_histogram
Calculates the histogram of a label image.
largest_connected_components
Returns a new mask, containing the biggest zone of mask.
maximum_filter
Calculate a multidimensional maximum filter.
maximum_filter1d
Calculate a 1-D maximum filter along the given axis.
maximum_filter1d_to
Calculate a 1-D maximum filter along the given axis.
median_filter
Binary median filter.
minimum_filter
Calculate a multidimensional minimum filter.
minimum_filter1d
Calculate a 1-D minimum filter along the given axis.
minimum_filter1d_to
Calculate a 1-D minimum filter along the given axis.
most_frequent_label
Returns the most frequent label and its index.
pad
Pad an image.
pad_to
Pad an image.
prewitt
Calculate a Prewitt filter.
shift
Shift an array.
sobel
Calculate a Prewitt filter.
spline_filter
Multidimensional spline filter.
spline_filter1d
Calculate a 1-D spline filter along the given axis.
uniform_filter
Uniform filter for n-dimensional arrays.
uniform_filter1d
Uniform filter for 1-dimensional arrays.
zoom
Zoom an array.

Type Aliases§

Mask
3D mask