This project only houses a Dockerfile which encapsulates all (or, most of) the dependencies to get started with the panoramic image stitching library called OpenPano.
The Dockerfile extends from a Python image and adds additional dependencies.
It shares a MIT License, like the OpenPano project.
For a more detailed usage, see the OpenPano project page.
In summary, you can quickly get started with the following
Build the docker image
docker build -t deontaljaard/pano .
Run it
docker run -it deontaljaard/pano
You can then play with the openpano lib. Here is a quick example.
docker exec -it deontaljaard/pano bash
cd /openpano/src
python2 run_test.py
Happy image stitching!