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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use PyPNG. It's a pure Python (no dependencies) open source PNG encoder/decoder and it supports writing NumPy arrays as images. |
|||
|
|
|
Maybe you have scipy:
|
|||||||||||
|
|
If you have matplotlib, you can do:
|
|||||||
|
|
given a numpy array "A":
you can replace "jpeg" with almost any format you want. More details about the formats here |
|||||
|
|
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):
|
|||
|
|
