我open-cv==3.4.2
用于在 python 中拼接图像。
import cv2
stitcher = cv2.createStitcher()
(status, stitched_panorama) = stitcher.stitch(image_array)
在来自 opencv 源代码的文件混合器中,我看到混合类型Feather
和Multi Band
. 但是没有选项可以从stitch
方法中选择它。拼接图像时是否可以选择混合类型?如果是,如何?如果没有,你能告诉我默认使用哪种方法吗?