I overlaid two images and I used mutiple
#ways to change the theme into white
#none worked to do that
#plt.figure(facecolor='white')
#plt.style.use("seaborn-whitegrid")
#fig.set_facecolor('white')
#plt.gcf().set_facecolor('white')
#plt.figure()
#fig.patch.set_facecolor('white')
#3mpl.rcParams['figure.facecolor'] = 'white'
#None of the above worked to change the theme into white
#This is how I overlaid the images
import matplotlib.pyplot as plt
plt.imshow(in_frame,alpha=0.1)
plt.imshow(ing_frame,cmap='RdBu', alpha =0.5)
plt.show()
#see attached image
#Change the theme or background from blue into 'white'``