Structs§
- NdImage
- This newtype struct can wrap an image from either the
ndarray
orimage
crates to automatically allow them to be turnedinto()
the equivalents in the other crate. This works without copying.
Enums§
Functions§
- open_
gray_ image - Opens a gray image using the
image
crate and loads it into a 2d array. This performs a copy. - open_
image - Opens a color image using the
image
crate and loads it into a 3d array. This performs a copy. - save_
gray_ image - Saves a gray image using the
image
crate from a 3d array. - save_
image - Saves a color image using the
image
crate from a 3d array.