This module provides various filter functions that can be performed on images. Filter functions differ from transformations (:d:mod:daffodil.transform) in that they cannot be performed in-place, ie. a copy of the image is required to perform the filter.
Exposes the :d:class:Image class, which provides basic storage, access and conversion of images.
Exposes the :d:class:MetaData class, used to store metadata for images.
This module contains the implementation for the internal pixel storage mechanisms.
This module provides various transformation functions that can be performed on images. Transform functions differ from filters (:d:mod:daffodil.filter) in that they can be performed in-place.
Detects the :d:struct:Format a given input is in.
Loads a :d:class:Image from a given input.
Loads the metadata from a given input.
Register a new format for auto-detection with :d:func:detectFormat, :d:func:loadMeta and :d:func:load functions.
Saves a particular :d:class:Image to a given output.
A struct for metadata about an Image Format. See :d:func:registerFormat for more information.
This module provides the public interface for Daffodil.