python将两张图片拼接起来
from PIL import Imageimport matplotlib.pyplot as pltimg1 = Image.open(".\\111.jpg")img2 = Image.open(".\\222.jpg")result = Image.new(img1.mode, (320 * 2, 568 ))result.paste(img1, box=(0, 0))result.paste(img2, box=(320, 0))plt.imsh