##my code only plots the first image
import matplotlib.pyplot as plt
cm = plt.cm.RdBu_r
cm.set_under('white')
#this plots the first image
img1= plt.imshow(ing_frame,cmap=cm,vmin=12)
#this plots the second image
img2=plt.imshow(in_frame)
plt.show()
I need a way to combine both images with the white background