From: John H. <jdh...@ac...> - 2004-10-05 18:30:51
|
from tempfile import mktemp from urllib import urlretrieve from matplotlib.matlab import * url = 'http://matplotlib.sf.net/clara.png' fname = mktemp('.png') print 'Downloading image; this may take a minute...' urlretrieve(url, fname) figure(figsize=(8,6)) im = imread(fname) imshow(im) axis('off') title('Clara Charlotte Hunter, born 10/2/2004') show() |
From: Peter G. <pgr...@ge...> - 2004-10-05 18:46:27
|
CONGRATULATIONS.... John Hunter wrote: >from tempfile import mktemp >from urllib import urlretrieve >from matplotlib.matlab import * > >url = 'http://matplotlib.sf.net/clara.png' >fname = mktemp('.png') >print 'Downloading image; this may take a minute...' >urlretrieve(url, fname) > >figure(figsize=(8,6)) >im = imread(fname) >imshow(im) >axis('off') >title('Clara Charlotte Hunter, born 10/2/2004') >show() > > > -- Peter Groszkowski Gemini Observatory Tel: +1 808 974-2509 670 N. A'ohoku Place Fax: +1 808 935-9235 Hilo, Hawai'i 96720, USA |
From: Darren D. <dd...@co...> - 2004-10-05 19:03:23
|
Congratulations John, thats wonderful! On Tuesday 05 October 2004 01:42 pm, John Hunter wrote: > from tempfile import mktemp > from urllib import urlretrieve > from matplotlib.matlab import * > > url =3D 'http://matplotlib.sf.net/clara.png' > fname =3D =A0mktemp('.png') > print 'Downloading image; this may take a minute...' > urlretrieve(url, fname) > > figure(figsize=3D(8,6)) > im =3D imread(fname) > imshow(im) > axis('off') > title('Clara Charlotte Hunter, born 10/2/2004') > show() =2D-=20 Darren |
From: <fcc...@fi...> - 2004-10-05 19:42:03
|
Congratulations John!! On Tuesday 05 October 2004 17:42, John Hunter wrote: > from tempfile import mktemp > from urllib import urlretrieve > from matplotlib.matlab import * > > url = 'http://matplotlib.sf.net/clara.png' > fname = mktemp('.png') > print 'Downloading image; this may take a minute...' > urlretrieve(url, fname) > > figure(figsize=(8,6)) > im = imread(fname) > imshow(im) > axis('off') > title('Clara Charlotte Hunter, born 10/2/2004') > show() > > > ------------------------------------------------------- > This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > Use IT products in your business? Tell us what you think of them. Give us > Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > http://productguide.itmanagersjournal.com/guidepromo.tmpl > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users |
From: Chris B. <Chr...@no...> - 2004-10-05 20:54:38
|
congrats, John, but if my experience is any indication, we'll see a slowing in matplotlib progress. At least we know why! -Chris -- Christopher Barker, Ph.D. Oceanographer NOAA/OR&R/HAZMAT (206) 526-6959 voice 7600 Sand Point Way NE (206) 526-6329 fax Seattle, WA 98115 (206) 526-6317 main reception Chr...@no... |
From: Paul B. <ba...@st...> - 2004-10-05 21:17:47
|
matplotlib is truely amazing. Is this patch for creating babies in CVS? Congradulations. John Hunter wrote: > from tempfile import mktemp > from urllib import urlretrieve > from matplotlib.matlab import * > > url = 'http://matplotlib.sf.net/clara.png' > fname = mktemp('.png') > print 'Downloading image; this may take a minute...' > urlretrieve(url, fname) > > figure(figsize=(8,6)) > im = imread(fname) > imshow(im) > axis('off') > title('Clara Charlotte Hunter, born 10/2/2004') > show() > -- Paul Barrett, PhD Space Telescope Science Institute Phone: 410-338-4475 ESS/Science Software Branch FAX: 410-338-4767 Baltimore, MD 21218 |
From: Barry D. <bl...@ad...> - 2004-10-05 22:42:34
|
John, Congratulations! She's beautiful. Barry Drake --- John Hunter wrote: > > from tempfile import mktemp > from urllib import urlretrieve > from matplotlib.matlab import * > > url = 'http://matplotlib.sf.net/clara.png' > fname = mktemp('.png') > print 'Downloading image; this may take a minute...' > urlretrieve(url, fname) > > figure(figsize=(8,6)) > im = imread(fname) > imshow(im) > axis('off') > title('Clara Charlotte Hunter, born 10/2/2004') > show() > > > ------------------------------------------------------- > This SF.net email is sponsored by: IT Product Guide > on ITManagersJournal > Use IT products in your business? Tell us what you > think of them. Give us > Your Opinions, Get Free ThinkGeek Gift Certificates! > Click to find out more > http://productguide.itmanagersjournal.com/guidepromo.tmpl > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > |
From: Jim B. <jb...@se...> - 2004-10-05 23:56:53
|
Congratulations to you and Ms. Hunter! Jim On Tue, 5 Oct 2004, John Hunter wrote: > > from tempfile import mktemp > from urllib import urlretrieve > from matplotlib.matlab import * > > url = 'http://matplotlib.sf.net/clara.png' > fname = mktemp('.png') > print 'Downloading image; this may take a minute...' > urlretrieve(url, fname) > > figure(figsize=(8,6)) > im = imread(fname) > imshow(im) > axis('off') > title('Clara Charlotte Hunter, born 10/2/2004') > show() > > > ------------------------------------------------------- > This SF.net email is sponsored by: IT Product Guide on ITManagersJournal > Use IT products in your business? Tell us what you think of them. Give us > Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more > http://productguide.itmanagersjournal.com/guidepromo.tmpl > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > -- Dr. James A. Benson United States Naval Observatory Navy Prototype Optical Interferometer Flagstaff, AZ 86001 Email: jb...@no... jb...@se... Voice: 928-773-4868/928-779-5132 Fax: 928-779-9568 |
From: LUK S. <shu...@po...> - 2004-10-07 05:47:22
|
John Hunter wrote: > from tempfile import mktemp > from urllib import urlretrieve > from matplotlib.matlab import * > > url = 'http://matplotlib.sf.net/clara.png' > fname = mktemp('.png') > print 'Downloading image; this may take a minute...' > urlretrieve(url, fname) > > figure(figsize=(8,6)) > im = imread(fname) > imshow(im) > axis('off') > title('Clara Charlotte Hunter, born 10/2/2004') > show() > It didn't work OTOB with my rather old matplotlib and it gave me a good reason to upgrade. :-) Congratulations and best wishes for the whole family! ST -- |