Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #100743

Re: imshow keeps crashhing

From John Gordon <gordon@panix.com>
Newsgroups comp.lang.python
Subject Re: imshow keeps crashhing
Date 2015-12-22 19:19 +0000
Organization PANIX Public Access Internet and UNIX, NYC
Message-ID <n5c7og$18a$1@reader1.panix.com> (permalink)
References <a7993a64-837e-4062-a856-d40acc35f208@googlegroups.com>

Show all headers | View raw


In <a7993a64-837e-4062-a856-d40acc35f208@googlegroups.com> norouzey@gmail.com writes:

> Can anyone please help me with "imshow"? I have tried "imshow" on different computers and different Python consoles but it does not work. Here are the code and the error message:

> import scipy.misc as mi
> img = mi.imread('C:\images\circles.png')
> mi.imshow(img)

> 'see' is not recognized as an internal or external command,
> operable program or batch file.

scipy calls an external image viewer program to display the image.

The name of this program is stored in the environment variable
SCIPY_PIL_IMAGE_VIEWER.  If that variable is not present, it uses
'see' by default.

Do you have a suitable image viewing program installed on your computer?
If so, try setting the SCIPY_PIL_IMAGE_VIEWER environment variable to the
name of that program.

-- 
John Gordon                   A is for Amy, who fell down the stairs
gordon@panix.com              B is for Basil, assaulted by bears
                                -- Edward Gorey, "The Gashlycrumb Tinies"

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

imshow keeps crashhing norouzey@gmail.com - 2015-12-22 11:06 -0800
  Re: imshow keeps crashhing John Gordon <gordon@panix.com> - 2015-12-22 19:19 +0000
    Re: imshow keeps crashhing darren.mcaffee@gmail.com - 2016-01-06 14:20 -0800
      Re: imshow keeps crashhing John Gordon <gordon@panix.com> - 2016-01-06 22:42 +0000
        Re: imshow keeps crashhing darren.mcaffee@gmail.com - 2016-01-06 15:10 -0800
          Re: imshow keeps crashhing John Gordon <gordon@panix.com> - 2016-01-06 23:26 +0000
            Re: imshow keeps crashhing Random832 <random832@fastmail.com> - 2016-01-07 11:45 -0500
          Re: imshow keeps crashhing William Ray Wing <wrw@mac.com> - 2016-01-06 18:37 -0500
            Re: imshow keeps crashhing darren.mcaffee@gmail.com - 2016-01-06 15:52 -0800
              Re: imshow keeps crashhing darren.mcaffee@gmail.com - 2016-01-06 17:13 -0800
            Re: imshow keeps crashhing darren.mcaffee@gmail.com - 2016-01-07 08:23 -0800
          Re: imshow keeps crashhing Random832 <random832@fastmail.com> - 2016-01-07 11:49 -0500

csiph-web