[][src]Crate imagecli

A command line image processing tool, built on top of the image and imageproc crates.

Modules

documentation

Functions for generating documentation for this application.

error

The standard error and result types used in this library.

image_ops

Defines the ImageOp trait, and all operations supported by this library.

Macros

map_to_boxed_trait

Converts a parser that returns a T: SomeTrait to one that returns a Box.

Functions

input_paths

Finds the set of input paths matching the provided glob patterns.

load_inputs

Load all images matching the given globs.

paths_matching_pattern

Finds the set of paths matching the provided glob pattern.

process

Load inputs, run the pipeline, and save the results.

run_pipeline

Run an image processing pipeline on a stack with the given initial contents.

save_images

Save images according to an OutputSpec.

Type Definitions

ImageStack

An image stack. All image operations in this library operate on an image stack by popping zero or more images from it, computing zero or more results and pushing those back onto the stack.