The Vision Workbench 2.0 is finally out of alpha testing! After far too long, we're excited to announce the first Vision Workbench 2.0 beta release.
What this means is that our team will be shifting our focus somewhat for a while, towards bug fixing, test writing, and documenting. It also means that the core API that you'll find in this version is something that we're reasonably confident we're going to be able to support as we go forward. We're branching the code in our repository, and development work that might introduce backwards-incompatible changes will be handled separately. Hopefully this will allow us to release more timely bug fixes while ensuring that the Vision Workbench remains a stable platform for image processing research and development.
The NASA Vision Workbench (VW) is a general purpose image processing and computer vision library developed by the Autonomous Systems and Robotics (ASR) Area in the Intelligent Systems Division at the NASA Ames Research Center. VW has been publicly released under the terms of the NASA Open Source Software Agreement.
The Vision Workbench was implemented in the C++ programming language and makes extensive use of C++ templates and generative programming techniques for conciseness of expression, efficiency of operation, and generalization of implementation.
While substantial functionality is implemented in the Vision Workbench, the goal of the library is not to provide advanced cutting-edge image processing or computer vision capabilities. Rather, the intent is to provide a solid efficient foundation implementing well known techniques and a common framework for doing advanced research and development in collaboration with others.
The intended audience for the Vision Workbench includes computer vision and robotics researchers and developers, as well as those who simply want to transform or enhance images. At this point in time, the VW may not be suitable for those who have little experience or familiarity with C++.
The Vision Workbench is primarily developed by the Intelligent Robotics Group (IRG) in the Intelligent Systems Division at the NASA Ames Research Center. IRG has been actively developing image processing and machine vision techniques for planetary exploration since 1995. Initially focused on providing immersive visualization capabilities for mission control, these systems were subsequently adapted for use on-board planetary rovers, as well as for large-scale data processing of planetary satellite imagery.
C++ templates are used extensively throughout the Vision Workbench. This enables compile time expansion and optimization of expressions, and in general terms, compile-time computation of checks and quantities that are typically performed at run-time with more traditional object oriented approaches. In addition, extensive parameterization by type of functions and classes together with careful design has the well known advantage of enabling code reuse across a variety of applications.
The Vision Workbench has a hierarchical layered architecture where each implementation layer is composed of a set of modules that are independent of modules in higher level layers. Dependencies between modules in a given layer and circular dependencies (direct or indirect) between modules are not permitted.
The following modules are distributed with this release:
The Core, Math, Image, and FileIO modules are considered to be foundational and are required for typical library usage. The Camera, HDR, and Cartography modules are included in the library by default, but can be disabled in the VW library build process if not desired.
The latest Vision Workbench source code release is available from the links below:
The Vision Workbench depends on a number of external libraries. Most of these external libraries are optional and not required to build the core of the Vision Workbench. However, the Boost library is required and must be downloaded, built and installed prior to building the Vision Workbench if it's not already available on your computer.
| Library | Dependent Modules |
|---|---|
| Boost | Core, etc. (req.) |
| LAPACK | Portions of Math, HDR (opt.) |
| PNG | FileIO (opt.) |
| JPEG | FileIO (opt.) |
| TIFF | FileIO (opt.) |
| OpenEXR | FileIO (opt.) |
| PROJ.4 | Cartography (req.) |
| GDAL | Cartography (req.) |
The Vision Workbench relies on the LAPACK and BLAS libraries for its basic linear algebra functions, including eigensystem solving, linear least squares, and singular value decomposition. For your convenience, we have provided a version of LAPACK as a supplementary distribution above. This LAPACK distribution has been tested with the Vision Workbench, however the Vision Workbench has been shown to work with other versions of LAPACK that may come pre-installed on your system. In particular, Mac OS X users do not need to use the LAPACK installer above — LAPACK support is provided by Apple's vecLib framework on Mac OS X.
Detailed installation and build instructions are found in the "README" and "INSTALL" files distributed with the release. You can find release notes for the current version in the "NEWS" file.
The most comprehensive source of documentation for VW is the Vision Workbook: a User's Guide to the NASA Vision Workbench. This book is available in the docs/ directory of the source distribution, or you can download a copy of the latest version here. It has not yet been updated for version 2.0 of the Vision Workbench.
In addition, Doxygen can be used to automatically generate API documentation. Assuming you have doxygen installed on your system, you can generate the documentation by running "make docs" in the top level of the VW source distribution.
All bugs, feature requests, and general discussion should be sent to the Vision Workbench user mailing list:
To subscribe to this list, send an empty email message with the subject 'subscribe' (without the quotes) to
To contact the lead developers and project manager directly, send mail to:
We are working to establish out a process through which outside parties can actively participate as developers on this project. In the meantime, please contact vision-workbench-owner [at] lists [dot] nasa [dot] gov if you wish to contribute code to the Vision Workbench library.
+Autonomous Systems and Robotics