From d255c3aac8ee0d2c820099dd51cc06a1f0b26937 Mon Sep 17 00:00:00 2001 From: Nil Goyette Date: Thu, 8 Dec 2022 14:33:25 -0500 Subject: [PATCH] v0.3 --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8130dbd..9bf1487 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ndarray-ndimage" -version = "0.2.2" +version = "0.3.0" authors = ["Nil Goyette "] edition = "2021" diff --git a/README.md b/README.md index 9b967ea..f02ae5f 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Currently available routines include: - Fourier filters: none. Please use the excellent [`rustfft`] crate - Interpolation: spline_filter/1d - Measurements: label, label_histogram, largest_connected_components, most_frequent_label -- Morphology: binary_closing, binary_dilation, binary_erosion, binary_opening. Works on all kernels (structuring elements) but only the non-generic ones are extremely fast. +- Morphology: binary_closing, binary_dilation, binary_erosion, binary_opening. Works on all kernels (structuring elements). - Padding: Almost all modes. Work for all dimensions and types. **This crate is a work-in-progress.** Only a subset of the `scipy.ndimage` functions are provided and most of them offer less options than SciPy. Some are offered only in 3D, with less boundary modes, with only 2 types of structuring element, only for binary data, only for f64, etc.