Skip to content

alexandr3i/Feature-Matching-Panorama-Stitching

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Panorama Stitching with ORB and Homography in OpenCV

This project implements a classical panorama stitching pipeline using feature detection, matching, and homography estimation in Python with OpenCV.

What this project does

  • Loads 3 input images
  • Detects keypoints and descriptors using ORB
  • Matches descriptors using Brute-Force Matcher (Hamming)
  • Filters matches and estimates a homography with RANSAC
  • Warps images into a common frame and stitches them into a panorama
  • Removes black borders by cropping the valid region

Project structure

  • feature-matching-panorama-stitching.py - main script
  • assets/ - input images (24.png, 11.png, 42.png)
  • report/ - PDF report

Requirements

  • Python 3.7 (tested)
  • Dependencies in requirements.txt

Setup (Windows)

python -m venv .venv
.\.venv\Scripts\activate
pip install -r requirements.txt

About

Classical panorama stitching in OpenCV: ORB features, BFMatcher (Hamming), RANSAC homography, warping and border cropping.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages