pub trait Banded<T> {
fn bands(&self) -> T;
fn from_bands(bands: T) -> Self;
}Expand description
Represents an image with multiple channels, called bands.
Each band should be represented as a separate Image with [L] or [BitPixel] pixels.
Required Methods
fn from_bands(bands: T) -> Self
fn from_bands(bands: T) -> Self
Creates a new image from the given bands.