From: Andrew S. <str...@as...> - 2005-02-07 06:48:43
|
Andrew Straw wrote: > > Now, on to determine how to plot an image with origin='upper' with the > extent going the other way... Again, a no brainer: (modifications to image_demo3.py) w,h = lena.size extent = 0,w,h,0 figure(figsize=figsize) im = imshow(lena, origin='upper', aspect='preserve', extent=extent) |