Image alignment and stitching with MATLAB
Prerequisite: matlab 2014b or higher
images sets are already in ./imgs
**Note that**, this currently support image sets in
imgs folder. If you use your own image set, you need to set focus length and other parameters in
main.m`.######details of my algorithms are shown below:
I select two random sequence images set:family_house, and west_campus1
They are already shuffled. You can see them in imgs folder.
Or you can run shuffle.bash to shuffle them again.
As described in Brown’s paper, I use $N_inlier>k*N_pairs+b$ to compute whether a pair of images match or not
k,b are const. Set to 5.9 and 0.22 respectively.
See recognizing panorama for details
imorder.m
merge.m
computeTrans.m
RANSAC.m
create.m
getSIFTFeatures.m, getMatches.m
main.m
A nice tutorial on panorama I find useful.