全景图相关网络资料

1. 全景图教程

    http://www.johnhpanos.com/tuts.htm

    http://wiki.panotools.org/

 

2. 全景图制作软件

    Hugin(完全免费):http://hugin.sourceforge.net/

    PTGui:http://www.ptgui.com/

    Autopano:http://autopano.kolor.com

    AutoStitch(自动拼接软件):http://cs.bath.ac.uk/brown/autostitch/autostitch.html

 

3. 全景图查看器

    FSPViewer:http://www.fsoft.it/panorama/FSPViewer.htm

 

4. 全景图OpenCV实现

    OpenCV中有stitching模块,用Stitcher类拼接。大致代码如下:

    Mat pano;    //全景图
    Stitcher stitcher = Stitcher::createDefault(try_use_gpu); //创建Stitcher对象
    Stitcher::Status status = stitcher.stitch(imgs, pano); //拼接

  

 

你可能感兴趣的:(全景图)