OpenCV - Stitching Images from a grid of images

后端 未结 5 795
鱼传尺愫
鱼传尺愫 2021-01-31 19:42

I have found some basic working examples on stitching via OpenCV for panoramic images. I have also found some useful documentation in the API docs, but I can\'t find out how to

5条回答
  •  温柔的废话
    2021-01-31 20:27

    Consider enabling the use of GPU in the Opencv Stitcher:

    bool try_use_gpu = true;
    Stitcher myStitcher = Stitcher::createDefault(try_use_gpu); 
    Stitcher::Status status = myStitcher.stitch(Imgs, pano);
    

提交回复
热议问题