I tend to switch back & forth between Jupyter notebooks and the Wing IDE for debugging code. What I love about the Jupyter notebook is that I can run a cell and generate a sequence of images, with code like this:
import matplotlib.pyplot as plt
for i in range(10):
...do stuff...
plt.plot(image)
plt.show()
All the images end up nicely one after another in the jupyter cell output region, and can be easily reviewed by scrolling through that region.
Often though I want to go into the debugger to write new code or debug something, and I have not found a good mechanism to do something similar.
Any suggestions how to go about this ?
One option would be to write a function that writes all images to disk and then just view those with a photo viewing application, but I wonder if there is another way.