Expand description
The ndarray-image
crate provides multidimensional image processing for ArrayBase
,
the n-dimensional array data structure provided by ndarray
.
Enums§
- Border
Mode - 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 inputarr
. - 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