Saving a Numpy array as an image - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:04:15Z http://stackoverflow.com/feeds/question/902761 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/902761/saving-a-numpy-array-as-an-image 3 Saving a Numpy array as an image M456 2009-05-24T00:08:50Z 2009-11-11T04:53:29Z <p>I have a matrix in the type of a Numpy array. How would I write it to disk it as an image? Any format works (png, jpeg, bmp...). One important constraint is that PIL is not present.</p> http://stackoverflow.com/questions/902761/saving-a-numpy-array-as-an-image/902774#902774 4 Answer by dF for Saving a Numpy array as an image dF 2009-05-24T00:26:05Z 2009-05-24T00:26:05Z <p>You can use <a href="http://code.google.com/p/pypng/" rel="nofollow">PyPNG</a>. It's a pure Python (no dependencies) open source PNG encoder/decoder and it <a href="http://packages.python.org/pypng/ex.html#numpy" rel="nofollow">supports</a> writing NumPy arrays as images.</p> http://stackoverflow.com/questions/902761/saving-a-numpy-array-as-an-image/977040#977040 0 Answer by DopplerShift for Saving a Numpy array as an image DopplerShift 2009-06-10T17:29:37Z 2009-06-10T17:29:37Z <p>If you have matplotlib, you can do:</p> <pre><code>import matplotlib.pyplot as plt plt.imshow(matrix) #Needs to be in row,col order plt.savefig(filename) </code></pre> http://stackoverflow.com/questions/902761/saving-a-numpy-array-as-an-image/978306#978306 0 Answer by Autoplectic for Saving a Numpy array as an image Autoplectic 2009-06-10T21:43:06Z 2009-06-10T21:43:06Z <p>matplotlib svn has a new function to save images as just an image -- no axes etc. it's a very simple function to backport too, if you don't want to install svn (copied straight from image.py in matplotlib svn, removed the docstring for brevity):</p> <pre><code>def imsave(fname, arr, vmin=None, vmax=None, cmap=None, format=None, origin=None): from matplotlib.backends.backend_agg import FigureCanvasAgg as FigureCanvas from matplotlib.figure import Figure fig = Figure(figsize=arr.shape[::-1], dpi=1, frameon=False) canvas = FigureCanvas(fig) fig.figimage(arr, cmap=cmap, vmin=vmin, vmax=vmax, origin=origin) fig.savefig(fname, dpi=1, format=format) </code></pre> http://stackoverflow.com/questions/902761/saving-a-numpy-array-as-an-image/1713101#1713101 0 Answer by Steve for Saving a Numpy array as an image Steve 2009-11-11T04:53:29Z 2009-11-11T04:53:29Z <p>If you have numpy, then you have scipy:</p> <pre><code>import scipy scipy.misc.imsave('outfile.jpg', image_array) </code></pre> <p>I think this is a more natural solution since it is enclosed within numpy/scipy. At least, that's what I do.</p>