Stitch Images Stored in List
imout = imstitchimage(imvec) imout = imstitchimage(imvec,params)
A structure which consist of following fields, could be created with imstitchimage_params
Resolution for image registration step. The default is 0.6 Mpx
Resolution for seam estimation step. The default is 0.1 Mpx
Resolution for compositing step. Use -1 for original resolution.The default is 1
Threshold for two images are from the same panorama confidence. The default is 1
Perform wave effect correction. The default is 1
Then number of bands for MultiBandBlender. The default is 100
imstitchimage tries to stitch images saved in Scilab list together to form a panaromic image.
S = list(); S(1) = imread(fullpath(getIPCVpath() + "/images/stitching/sk1.jpg")); S(2) = imread(fullpath(getIPCVpath() + "/images/stitching/sk2.jpg")); S(3) = imread(fullpath(getIPCVpath() + "/images/stitching/sk3.jpg")); S(4) = imread(fullpath(getIPCVpath() + "/images/stitching/sk4.jpg")); S(5) = imread(fullpath(getIPCVpath() + "/images/stitching/sk5.jpg")); S(6) = imread(fullpath(getIPCVpath() + "/images/stitching/sk6.jpg")); St = imstitchimage(S); subplot(321);imshow(S(1)); subplot(322);imshow(S(2)); subplot(323);imshow(S(3)); subplot(324);imshow(S(4)); subplot(325);imshow(S(5)); subplot(326);imshow(S(6)); scf();imshow(St); | ![]() | ![]() |