标签: python image opencv concatenation blending
我需要用python(opencv)从2个摄像头读取图像。我想在1张单张图片中连接2张图片。我可以轻松地做到这一点
frame = np.concatenate((cam1,cam2),axis = 1)
现在我想将第一个摄像头的最后20个像素与第二个摄像头的前20个像素混合。可能吗?我该怎么办?
谢谢!