Structs§
- NdImage
- This newtype struct can wrap an image from either the
ndarrayorimagecrates 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
imagecrate and loads it into a 2d array. This performs a copy. - open_
image - Opens a color image using the
imagecrate and loads it into a 3d array. This performs a copy. - save_
gray_ image - Saves a gray image using the
imagecrate from a 3d array. - save_
image - Saves a color image using the
imagecrate from a 3d array.