Code Monkey home page Code Monkey logo

image-stitching's Introduction

Image-Stitching

MATLAB code for panorama image stitching.

STITCH_IMAGES - Given a set of images with overlapping regions,
                automatically compute a panorama image.

Usage:    [result_img, H, num_inliers, residual] ...
              = stitch_images (images, sift_r, harris_r, ...
              harris_thresh, harris_sigma, num_putative_matches, ransac_n)

Usage example:
          stitch_images(images, 5, 5, 0.03, 1, 100, 4000)

Arguments:
          images                - 1 by n cell array of images.
          sift_r                - radius of the SIFT descriptor.
          harris_r              - radius of the Harris corner detector.
          harris_thresh         - Harris corner detector threshold.
          harris_sigma          - standard deviation of smoothing Gaussian
          num_putative_matches  - number of putative matches to run
                                  RANSAC.
          ransac_n              - number of RANSAC iterations.

Returns:
          result_img    - computed paranoma image.
          H             - n by n cell array of homography matrices.
                          H{i, j} is the homography matrix between images
                          i and j.
          num_inliers   - n by n array of number of inliers. num_inliers{i,
                          j} is the number of inliers between images i and
                          j.
          residual      - n by n array of sum of squared disrances.
                          residual{i, j} is the residual between images i
                          and j.

Dependencies:
          VLFeat        - download at http://www.vlfeat.org/download.html

image-stitching's People

Contributors

daeyun avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.