Tagged Questions

3
votes
2answers
447 views

How can I get pyplot images to show on a console app?

I'm trying to create an image using matplotlib.pyplot.imshow(). However, when I run the program from my console, it doesn't display anything? This is the code: import matplotlib.pyplot myimage = ...
2
votes
1answer
173 views

How to animate a time-ordered sequence of matplotlib plots

I want to plot a sequence of .png images in matplotlib. The goal is to plot them rapidly to simulate the effect of a movie, but I have additional reasons for wanting to avoid actually creating an .avi ...
1
vote
1answer
21 views

What is antialiaseds in matplotlib.collections and how to set the parameter for it?

What is antialiaseds in matplotlib.collections and how to set the parameter for it?
1
vote
1answer
208 views

In Matplotlib, how do you add an Imagedraw object to a PyPlot?

I need to add a shape to a preexisting image generated using a pyplot (plt). The best way I know of to generate basic shapes quickly is using Imagedraw's predefined shapes. The original data has ...