allow_rasterization(draw) |
Decorator for Artist.draw method. |
from_images(numrows, numcols, seq) |
return an image instance with numrows, numcols from a seq of image |
fromarray(A, isoutput) |
Load the image from a numpy array By default this function fills the input buffer, which can subsequently be resampled using resize. |
frombuffer(buffer, width, height, isoutput) |
Load the image from a character buffer By default this function fills the input buffer, which can subsequently be resampled using resize. |
frombyte(A, isoutput) |
Load the image from a byte array. |
imread(fname[, format]) |
Read an image from a file into an array. |
imsave(fname, arr[, vmin, vmax, cmap, ...]) |
Save an array as in image file. |
pcolor(x, y, data, rows, cols, bounds) |
Generate a pseudo-color image from data on a non-uniform grid using nearest neighbour or linear interpolation. |
pcolor2(x, y, data, rows, cols, bounds, bg) |
Generate a pseudo-color image from data on a non-uniform grid specified by its cell boundaries. |
pil_to_array(pilImage) |
Load a PIL image and return it as a numpy array. |
thumbnail(infile, thumbfile[, scale, ...]) |
make a thumbnail of image in infile with output filename |
urlopen(url[, data, timeout, cafile, ...]) |
|
urlparse(url[, scheme, allow_fragments]) |
Parse a URL into 6 components: <scheme>://<netloc>/<path>;<params>?<query>#<fragment> Return a 6-tuple: (scheme, netloc, path, params, query, fragment). |