School project - creating a panorama from multiple images.
- OpenCV
- A C++ compiler
To generate the project:
mkdir build
cd build
cmake .. [-G <your_compiler>]
Then build the project with your compiler.
To run the corner detection algorithm on an image:
./corner_detection <image>
It will open a window highlighting the detected corners and a second window with the corners detected by OpenCV.
To run the corner pairing algorithm on two images:
./corner_pairing <image1> <image2>
It will open a window showing the pairs of corners on the two images.
Tu construct a panorama with two images:
./panorama <image1> <image2> <out>