Skip to content

Automatic Panorama Stitching written from scratch

License

Notifications You must be signed in to change notification settings

cloudvision/panorama

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

340 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Panorama

Introduction

This is an panorama stitching program written in C++ from scratch. It mainly follows the routine described in the paper Automatic Panoramic Image Stitching using Invariant Features, which is also the one used by AutoStitch.

(Recently I'm working on refactoring & improvements, changes are expected)

Build Status

Compile Dependencies:

  • gcc >= 4.7
  • Eigen
  • FLANN (already included in the repository, slightly modified)
  • CImg (optional. already included in the repository)
  • libjpeg (optional. If you only need png, you can comment the jpeg macro in lib/imgio.cc)

Eigen, CImg and FLANN are header-only, to simplify the compilation on different platforms. CImg and libjpeg are only used to read and write images, so you can easily get rid of them.

Compile:

Linux / OSX:

$ cd src; make

Windows users can try cmake with the given CMakeLists.txt.

Options:

Three modes are available (set/unset the options in config.cfg):

  • cylinder mode. When the following conditions satisfied, this mode usually yields better results:

    • Images are taken with almost-pure single-direction rotation. (as common panoramas)
    • Images are given in the left-to-right order. (I might fix this in the future)
    • Images are taken with the same camera, and a good FOCAL_LENGTH is set.
  • camera estimation mode. No translation is the only requirement on cameras. It can usually work well as long as you don't have too few images. But it's slower because it needs to perform pairwise matches.

  • translation mode. Simply stitch images together by affine transformation. It works when camera performs pure translation. It also requires ordered input.

Some options you may care:

  • FOCAL_LENGTH: focal length of your camera in 35mm equivalent. Only used in cylinder mode.
  • ORDERED_INPUT: whether input images are ordered. it is required in CYLINDER and TRANS mode.
  • CROP: whether to crop the final image to avoid meaningless border.

Other parameters are quality-related. The default values are generally good for images with more than 0.7 megapixels. If your images are too small and cannot give satisfactory results, it might be better to resize your images rather than tune the parameters.

Run:

$ ./image-stitching <file1> <file2> ...

The default output file is out.jpg.

Before dealing with very large images (4 megapixels or more), it's better to resize them. (I might add this feature in the future)

In cylinder/translation mode, the input file names need to have the correct order.

Examples:

Zijing Apartment in Tsinghua University: dorm

Myselves: myself

Zijing Playground in Tsinghua University: planet

Carnegie Mellon University from 38 images cmu0 apple

For more examples, see results.

Speed & Memory:

Tested on Intel Core i7-6700HQ, with ESTIMATE_CAMERA mode:

  • 11 ordered images of size 600x400: 3.2s.
  • 13 ordered images of size 1500x1112: 6s.
  • 38 unordered images of size 1300x867 (high vertical FOV): 51s.

Memory consumption is known to be huge with default libc allocator. Simply use a modern allocator (e.g. tcmalloc, hoard) can help a lot.

Algorithms

  • Features: SIFT
  • Transformation: use RANSAC to estimate a homography or affine transformation.
  • Optimization: focal estimation, bundle adjustment, and some straightening tricks.

For details, please see my post.

About

Automatic Panorama Stitching written from scratch

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • C++ 79.3%
  • TeX 12.4%
  • Python 5.4%
  • CMake 1.2%
  • Makefile 1.1%
  • Shell 0.6%