The project has two parts:
- Homography Estimation/ Image Stitching
- Fundamental Matrix Estimation and Triangulation
Following instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
- Matlab
- Clone the application
git clone https://github.com/PrachiP23/Image-Stitching.git
- To stitch 2 images, run below commands:
image1 = imread(image1_path);
image2 = imread(image2_path);
image_stitch(image1, image2);
- To stitch 3 images, run below commands:
image1 = imread(image1_path);
image2 = imread(image2_path);
image3 = imread(image3_path);
stitch_multiple_images(imgage1, image2, image3);