import matplotlib.pyplot as pltimport matplotlib.image as mpimgfrom matplotlib import rcParams%matplotlib inline# figure size in inches optionalrcParams['figure.figsize'] = 11 ,8# read imagesimg_A = mpimg.imread('\path\to\img_A.png')img_B = mpimg.imread('\path\to\img_B.png')# display imagesfig, ax = plt.subplots(1,2)ax[0].imshow(img_A);ax[1].imshow(img_B);
