The imaging2 class library

illustration.jpg

Introduction

This class library should provide an object-oriented implementation of basic mathematical objects and functions used in image processing. The goal is to provide a common code base, so that new code can quickly be created from an existing foundation. Furthermore the standardization of interfaces shall faciliate the sharing of existing code. Wrapping third-party code in imaging2 compatible interfaces makes them accessible to all users of the library. We also try to benefit from the features of C++ as much as possible.

In the following we give an overview of the capabilities of imaging2. A short list of its main features is as follows:

The library is divided in several modules. In the following we give a short overview of the functionality implemented in each of these modules.

Core Module

The core module defines the namespace imaging (img) and the types img::float_t and img::size_t. Furthermore it includes uBLAS and its imaging2 specific extensions. It also provides a standard interface to display log messages, MessageInterface. Several mathematical utility functions are also defined in core.

Finite Element Module

The FEM module provides functions to assemble the stiffness matrix and force vector for user-defined equations. It also includes several functions to construct FE grids. In particular, Image2Grid constructs a FE grid from a given image and transparently transforms multi-dimensional image data to data vectors.

Graphics Module

The graphics module defines a stream based interface to display 2D objects. The user can provide her own definition of operator<<() to extend the capabilities of the standard graphics (similar to std::cout).

Image Module

The image module provides a template class for n-dimensional image data and specialized members to read and write 2-dimensional image data. Furthermore, the concept of accessor classes allows to apply simple transformations to images on the fly or efficiently access channels of vector valued image data. For 2D image data, several functions of the ImageMagick library are interfaced.

Linear Algebra Module

The linear algebra contains high level linear algebra functions such as eigensystem(), inverse() etc. for dense matrices. Internally these functions are based on Lapack.

Minimization Module

The minimization module contains gradient based and non-gradient gradient based optimiziation routines to optimize functions implementing EnergyInterface. It includes e.g. steepest descent, nonlinear conjugated gradients, covariance matrix adaptation (an evolutionary algorithm) etc.

Polytope Module

The polytope module is mainly a utility module which defines classes for simple polygons and multiply connected polygons with holes. It includes functions to compute the union of polygons and the intersection volume of polygons using third-party code (more should be added).

Segmentation Module

The segmentation module is a collection of segmentation energies which are compatible with the minimization module. Currently Mumford-Shah and Snakes are implemented, both with the possibility of statistical regularization.

Shape Module

The shape module defines a common interface for finite dimensional shape manifolds of arbitrary spatial dimension. In addition functions to integrate shapes, i.e. integration of (vector-valued) functions along the shape boundary, are provided. Implemented shapes are circles, B-spline curves and two kinds of M-Reps.

Linear Solver Module

The linear solver module provides solver routines for systems of linear equations defined by sparse matrices. Again these functions are not implemented but merely interface existing solvers in ITPACK and SPOOLES. Currently included are a CG, LU and BiCGStab solver.

B-Spline Module

The B-spline module includes classes for B-spline and periodic B-spline functions. This includes spline functions and curves of arbitrary dimension. The module provides functions to read/write B-splines from/to XML files and to display planar spline curves. It contains utility functions to solve the spline interpolation problem.

Statistic Module

The statistics module is a utility module which contains utility functions to compute means and variances. Additionally it includes an implementation of the linear principal component analysis (PCA).

XML Module

The XML module includes two classes for stream based input and output of XML files. The module is extensible. I.e. the user can provide XML handler classes for her custom objects and read and write this objects. Internally, it is based on libxml2.

Matthias Fuchs, 28/07/08


Generated on Tue Feb 10 10:01:29 2009 for imaging2 by  doxygen 1.5.5