Image stitching Python

前端 未结 2 535
南旧
南旧 2021-02-11 08:46

I have to stitch two or more images together using python and openCV. I found this code for finding keypoints and matches, but I don\'t know how to continue. Help me please!

2条回答
  •  独厮守ぢ
    2021-02-11 08:53

    Your question is not very clear, but I assume what you mean is that you have a bunch of images and you want to have opencv find the corresponding landmarks and then warp/scale each picture so that they can form one big image.

    A method without using the stitcher class, basically looping over pictures and determining the best fitting one each iteration, is documented in this github code

提交回复
热议问题