Operator Discretization Library (ODL) is a Python library for fast prototyping focusing on (but not restricted to) inverse problems. ODL is being developed at KTH Royal Institute of Technology.
The main intent of ODL is to enable mathematicians and applied scientists to use different numerical methods on real-world problems without having to implement all necessary parts from the bottom up.
This is reached by an Operator
structure which encapsulates all application-specific parts, and a high-level formulation of solvers which usually expect an operator, data and additional parameters.
The main advantages of this approach are that
- Different problems can be solved with the same method (e.g. TV regularization) by simply switching operator and data.
- The same problem can be solved with different methods by simply calling into different solvers.
- Solvers and application-specific code need to be written only once, in one place, and can be tested individually.
- Adding new applications or solution methods becomes a much easier task.
- Efficient and well-tested data containers based on NumPy (default) or CUDA (optional)
- Objects to represent mathematical notions like vector spaces and operators, including properties as expected from mathematics (inner product, norm, operator composition, ...)
- Convenience functionality for operators like arithmetic, composition, operator matrices etc., which satisfy the known mathematical rules.
- Out-of-the-box support for frequently used operators like scaling, partial derivative, gradient, Fourier transform etc.
- Support for tomographic imaging with a unified geometry representation and bindings to external libraries for efficient computation of projections and back-projections.
- Standardized tests to validate implementations against expected behavior of the corresponding mathematical object, e.g. if a user-defined norm satisfies
norm(x + y) <= norm(x) + norm(y)
for a number of input vectorsx
andy
.
For basic installation without extra dependencies, run
pip install odl
You can check that everything was installed properly by running
python -c "import odl; odl.test()"
This requires pytest. See the installation documentation for further information.
Several ODL features work better with external packages installed. This is a list of optional dependencies and links for further information. Some of the packages can be installed along ODL through pip by calling
pip install odl[FOO, BAR, ...]
where FOO, BAR, etc are the dependencies. Others require more complicated installation procedures, in that case, consult the respective package for instructions.
Package | Purpose | Dependency |
---|---|---|
ASTRA | Tomographic forward/backward projectors in RayTransform | |
scikit-image | 2D parallel beam forward/backward projectors in RayTransform | scikit |
FFTW | Accelerated FourierTransform | fftw |
PyWavelets | Computation of the WaveletTransform | pywavelets |
matplotlib | Visualization through the show command | show |
pytest | Unit tests | testing |
ODL is compatible to Python 2 and 3 through the future
library. It is intended to work on all major platforms (GNU/Linux / Mac / Windows).
Currently (2016-06-10) working combinations are:
Platform | Python | CUDA |
---|---|---|
Windows 7 | 2.7 | ✔ |
Windows 10 | 2.7 | ✔ |
Ubuntu 14.04 | 2.7 | ✔ |
Ubuntu 15.10 | 2.7 / 3.4 / 3.5 | ✔ |
Ubuntu 16.04 | 2.7 / 3.4 / 3.5 | ✔ |
Fedora 22 | 2.7 / 3.4 | x (1) |
Mac OSX | 3.5 | ?? |
(1) The default GCC 5.x compiler is not compatible with current CUDA (7.5)
GPL Version 3 or later. See LICENSE file.
If you would like to get the code under a different license, please contact the developers.
To contact the developers either write an issue on github or send an email to odl@math.kth.se
- Ozan Öktem (@ozanoktem)
- Kati Niinimäki (@niinimaki)
- Axel Ringh (@aringh)
- Julian Moosmann (@moosmann)
- Willem Jan Palenstijn (@wjp)
Development of ODL is financially supported by the Swedish Foundation for Strategic Research as part of the project "Low complexity image reconstruction in medical imaging".
Some development time has also been financed by Elekta.