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

Takes this image and returns its bands.

Creates a new image from the given bands.

Implementors