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.
|
feedback
|
|
You can use PyPNG. It's a pure Python (no dependencies) open source PNG encoder/decoder and it supports writing NumPy arrays as images. | |||
|
feedback
|
|
If you have numpy, then you have scipy:
I think this is a more natural solution since it is enclosed within numpy/scipy. At least, that's what I do. | |||||
|
feedback
|
|
If you have matplotlib, you can do:
| |||||
feedback
|
|
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):
| |||
|
feedback
|
|
given a numpy array "A":
you can replace "jpeg" with almost any format you want. More details about the formats here | |||
|
feedback
|