matlab图像拼接程序代码
1.% im = appendimages(image1, image2)
2.%
3.% Return a new image that appends the two images side-by-side.
4.
5.function im = appendimages(image1, image2)
6.
7.% Select the image with the fewest rows and fill in enough empty
rows
8.% to make it the same height as the other image.
9.rows1 = size(image1,1);
10.rows2 = size(image2,1);
11.
12.if (rows1 < rows2)
13.image1(rows2,1) = 0;
14.else
15.image2(rows1,1) = 0;
16.end
17.
18.% Now append both images side-by-side.
19.im = [image1 image2];
20.
今天的文章matlab图像拼接源代码,matlab图像拼接程序代码分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/29961.html