Python 中plt 使用subplot 在一张画布同时画多张图

subplot(arg1, arg2, arg3)

arg1: 在垂直方向同时画几张图
arg2: 在水平方向同时画几张图
arg3: 当前命令修改的是第几张图

	plt.figure()另起一张新的画布
from PIL import Image
import matplotlib.pyplot as plt

image1 = Image.open('1.jpg')
image2 = Image.open('2.jpg')

plt.subplot(121) 
plt.imshow(image1)
plt.subplot(122) 
plt.imshow(image2)
plt.show()  

Python 中plt 使用subplot 在一张画布同时画多张图_第1张图片

你可能感兴趣的:(pyhton)