1

我在 OpenCV Python 中搜索 Stitcher 类,它可以帮助我缝合从无人机收集的图像。我正在遵循此链接中显示的方法 How to use OpenCV Stitcher class with Python? 不幸的是,这在 OpenCV 3.1 和 Python 2.7 中引发了一些错误。我没有为这个函数找到任何合适的 Opencv 文档。任何人都可以在这方面帮助我。如果有人能够使用python解释stitcher类,那将是非常受欢迎的。` 导入 cv2

stitcher = cv2.createStitcher(False)
foo = cv2.imread("Image1")
bar = cv2.imread("Image2")
result = stitcher.stitch((Image1,Image2))

cv2.imshow("stitch_image",result)
4

1 回答 1

1

基于this other answer,我相信您需要执行以下操作:

cv2.imshow("stitch_image",result[1])
于 2018-05-30T02:26:40.013 回答