OpenCV non-rotational image stitching

前端 未结 1 1424
野趣味
野趣味 2021-02-06 13:39

I am doing image stitching in OpenCV, where I am taking pictures of a planar scene from different locations and try to compose a panorama. I have modified the stitching example

相关标签:
1条回答
  • 2021-02-06 14:05

    The opencv stitching code works by assuming translation to be zero. So if the translation is within a range, it will work fine. Else it will reject faraway images. If you want to use translated image set, you need to use decomposehomgraphymat which will give nonzero translation adn rotation. But for warping and blending opencv uses rotation of camera parameter only. So you need to devise a complete new method for non-rotational stitching, maybe you look into microsoft photosynth work. I am not sure, but it does work for only translated images.

    0 讨论(0)
提交回复
热议问题