Ask Your Question

Allen's profile - activity

2017-12-18 18:47:37 +0200 commented question image processing in notebook server

The Sage notebook. Is it possible to run a server for Jupyter notebooks?

2017-12-16 10:00:20 +0200 asked a question image processing in notebook server

I have a local notebook server and I'd like to be able to use the image manipulation modules from scipy. They seem to import just fine, but I never get any images, only what appear to be commands.

import pylab
from scipy import misc
A = misc.face()
pylab.imshow(A)

Outputs

AxesImage(80,48;496x384)

Do I need some additional configuration, or a plugin to make it work?