I want to change the background color of a plot created with imshow. However, the way to change the background only works based on the figure object
(Matplotlib figure facecolor (background color))
...i.e., you need to use the figure object name: e.g.,
rect.set_facecolor('red')
I have read that imshow creates a figure automatically.
Therefore, how can I tell what the automatically-created figure's name is, so that I can use set_facecolor( )