nshare
nshare copied to clipboard
Provides an interface layer to convert between n-dimensional types in different Rust crates
Hey, I've found this crate quite useful in its simplicity, thanks for that! This PR addresses #9, providing the methods to convert from Array->Image without copies. I've pushed the first...
Hello, Thank you for this library! Would it be possible to set less strict dependencies ? ie have ``` ndarray = { version = "0.15", default-features = false, optional =...
The following code section will panic: ``` let a = array!([[1.2, 2.3, 5.5]]); let a2 = a.into_nalgebra(); ```
I've had issues using nshare with the latest version of nalgebra. Apparently it is because, some changes have been made to nalgebra and nshare was not compatible. This PR is...
Feature request is pretty self-explanatory. I like nalgebra's compile-time guarantees about size (just for clean coding purposes), so it would be convenient to have a single-method conversion between them, rather...
I tried to figure out how to use this crate to convert a Array2 to and grayscale image, and I found the `ToImageLuma` trait. It seems like this trait is...