SourceForge logo
SourceForge logo
Menu

matplotlib-devel — matplotlib developers

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
(1)
Nov
(33)
Dec
(20)
2004 Jan
(7)
Feb
(44)
Mar
(51)
Apr
(43)
May
(43)
Jun
(36)
Jul
(61)
Aug
(44)
Sep
(25)
Oct
(82)
Nov
(97)
Dec
(47)
2005 Jan
(77)
Feb
(143)
Mar
(42)
Apr
(31)
May
(93)
Jun
(93)
Jul
(35)
Aug
(78)
Sep
(56)
Oct
(44)
Nov
(72)
Dec
(75)
2006 Jan
(116)
Feb
(99)
Mar
(181)
Apr
(171)
May
(112)
Jun
(86)
Jul
(91)
Aug
(111)
Sep
(77)
Oct
(72)
Nov
(57)
Dec
(51)
2007 Jan
(64)
Feb
(116)
Mar
(70)
Apr
(74)
May
(53)
Jun
(40)
Jul
(519)
Aug
(151)
Sep
(132)
Oct
(74)
Nov
(282)
Dec
(190)
2008 Jan
(141)
Feb
(67)
Mar
(69)
Apr
(96)
May
(227)
Jun
(404)
Jul
(399)
Aug
(96)
Sep
(120)
Oct
(205)
Nov
(126)
Dec
(261)
2009 Jan
(136)
Feb
(136)
Mar
(119)
Apr
(124)
May
(155)
Jun
(98)
Jul
(136)
Aug
(292)
Sep
(174)
Oct
(126)
Nov
(126)
Dec
(79)
2010 Jan
(109)
Feb
(83)
Mar
(139)
Apr
(91)
May
(79)
Jun
(164)
Jul
(184)
Aug
(146)
Sep
(163)
Oct
(128)
Nov
(70)
Dec
(73)
2011 Jan
(235)
Feb
(165)
Mar
(147)
Apr
(86)
May
(74)
Jun
(118)
Jul
(65)
Aug
(75)
Sep
(162)
Oct
(94)
Nov
(48)
Dec
(44)
2012 Jan
(49)
Feb
(40)
Mar
(88)
Apr
(35)
May
(52)
Jun
(69)
Jul
(90)
Aug
(123)
Sep
(112)
Oct
(120)
Nov
(105)
Dec
(116)
2013 Jan
(76)
Feb
(26)
Mar
(78)
Apr
(43)
May
(61)
Jun
(53)
Jul
(147)
Aug
(85)
Sep
(83)
Oct
(122)
Nov
(18)
Dec
(27)
2014 Jan
(58)
Feb
(25)
Mar
(49)
Apr
(17)
May
(29)
Jun
(39)
Jul
(53)
Aug
(52)
Sep
(35)
Oct
(47)
Nov
(110)
Dec
(27)
2015 Jan
(50)
Feb
(93)
Mar
(96)
Apr
(30)
May
(55)
Jun
(83)
Jul
(44)
Aug
(8)
Sep
(5)
Oct
Nov
(1)
Dec
(1)
2016 Jan
Feb
Mar
(1)
Apr
May
Jun
(2)
Jul
Aug
(3)
Sep
(1)
Oct
(3)
Nov
Dec
2017 Jan
Feb
(5)
Mar
Apr
May
Jun
Jul
(3)
Aug
Sep
(7)
Oct
Nov
Dec
2018 Jan
Feb
Mar
Apr
May
Jun
Jul
(2)
Aug
Sep
Oct
Nov
Dec
S M T W T F S

1
(3)
2
(3)
3
(2)
4
(9)
5
(4)
6
7
(1)
8
(5)
9
(3)
10
(2)
11
12
13
14
(4)
15
16
17
18
(1)
19
20
21
22
(4)
23
(1)
24
(6)
25
(7)
26
(1)
27
28
(1)
29
(5)
30
(6)
31
(10)



Showing results of 78

1 2 3 4 > >> (Page 1 of 4)
From: John H. <jdh...@ac...> - 2005年08月31日 14:16:42
>>>>> "Robert" == Robert Kern <rk...@uc...> writes:
 Sascha> I am writing a web server app that creates charts among
 Sascha> other things. I am trying to get rid of the temporary file
 Sascha> that I use to transmit the figures created with matplotlib
 Sascha> to the actual web server. Although print_figure says "If
 Sascha> filename is a fileobject, write png to file object (thus
 Sascha> you can, for example, write the png to stdout)" I can't
 Sascha> successfully write anything to stdout. Anyone knows an
 Sascha> example or can give me some hint what I can do to get rid
 Sascha> of the tempfile?
 >> Short answer: no known way to do this currently, though we'd
 >> like to figure it out. As far as I know (and could very well
 >> be wrong) libpng requires a FILE*, which StringIO and cStringIO
 >> do not provide.
 Robert> StringIO isn't the issue here; being able to write to
 Robert> sys.stdout, which ought to have a valid FILE* underneath,
 Robert> is the issue.
Thanks for reminding me about this. I thought it was possible to do
this, but had managed to forget
 import sys
 from pylab import plot, savefig, show
 plot([1,2,3])
 savefig(sys.stdout)
 show()
which I run with 
 > python test.py -dAgg > test.png
produces the expected figure.
JDH
From: Arnd B. <arn...@we...> - 2005年08月31日 12:20:29
Hi,
On 2005年8月30日, Ken McIvor wrote:
> On Aug 30, 2005, at 10:45 AM, Arnd Baecker wrote:
> > I would have thought so as well. However I get:
> <snip>
> > A search for wxPython.h on
> > http://www.debian.org/distrib/packages#search_packages
> > gives no hits.
>
> Sorry, due to a lack of coffee this morning I misread "wxPython.h" as
> "wxWidgets.h" or something daft, yielding the kneejerk "install the
> -dev package" response.
>
> I wasn't aware of this situation, but it has the potential to be a big
> problem for me at work, where we primarily run Debian. I have emailed
> Ron Lee, the wxgtk2.4 package maintainer, about the situation. We'll
> see what he has to say on the matter.
Excellent - I was thinking about doing the same.
> > I agree. I wonder if anything improved with wx2.6? (for our
> > PlottingCanvas
> > we even dared to keep drawing DCs around, and it works without
> > problems...)
>
> What PlottingCanvas is this? I'd be interested in seeing what
> optimizations you guys performed, if the source is available.
http://www.physik.tu-dresden.de/~baecker/python/plot.html
One of our main goals was to plot many points quickly,
in such a way that one appears
after another to get a "dynamic" appearance.
See http://www.physik.tu-dresden.de/~baecker/python/StandardMap.py
as an example.
(note that it still uses the old wx style...)
[...]
> > However, we are currently investigating to use
> > matplotlib for
> > a computational physics course (which will be next summer) and many of
> > the
> > students have *much* slower machines. So we need maximum speed but
> > with a
> > minimum of coding hassle (around 30% of the students have never
> > programmed
> > before ...).
>
> Just leveling the playing field between WXAgg and GtkAgg is exciting
> for me, because that means that future efforts at general optimization
> will net a bigger speed improvement for WXAgg.
>
> I'd imagine the plotting speed will be good enough for something along
> the lines of interactive plotting with iPython or visualizing results
> with pylab.
We have just finished the conversion of all exercices
of our course from scipy.xplt (aka pygist) to matplotlib.
Unfortunately, quite a few are prohibitively slow, even
on our fast machines. But we have some ideas
on possible improvements (both on the side of our code
and on the side of matplotlib) - this is going to be
separate thread though ;-)
> Speaking as a recent survivor of a computational physics
> class, I expect you to see a huge benefit from using Python as the
> language and matplotlib as the visualization, especially if you have
> students who have never programmed before.
I absolutely agree - we have been running our course now
for the third year, so far with scipy and scipy.xplt as plotting
programm. We had very positive feedback (of course,
those who never programmed before, had to work harder ;-).
Just in case: http://www.comp-phys.tu-dresden.de/cp2005/,
however the material (apart from the FAQ) is in German.
Best,
Arnd
From: Nicholas Y. <su...@su...> - 2005年08月31日 10:04:03
On Tue, 2005年08月30日 at 21:16 -0700, Robert Kern wrote:
> Why not use PIL where it's available? backend_agg2.py has a start at
> this. Here's a slightly more fleshed-out (but untested) implementation
> for backend_agg.py :
> 
> if not is_string_like(filename):
> try:
> import Image
> have_pil = True
> except ImportError:
> have_pil = False
> if have_pil:
> img = Image.frombuffer('RGBA', (self.width, self.height),
> self.buffer_rgba(0, 0))
> img.write(filename)
> else:
> self.renderer._renderer.write_png(filename)
I've previously had a problem with the origin when doing something
similar with buffer_rgba (resulting in a vertical flip). Doing:
 im = Image.frombuffer('RGBA', (self.width, self.height),
 self.buffer_rgba(0, 0),
 'raw', 'RGBA', 0, 1)
fixes that problem.
If a method utilising PIL images in this manner is added I'd suggest
adding a to_pil (or similar) method for those who want to process the
resulting image in some manner requiring PIL.
Nick
From: Arnd B. <arn...@we...> - 2005年08月31日 07:05:30
On 2005年8月30日, Ken McIvor wrote:
[...]
> 	# assuming z0 is the initial MxN array that is being decayed...
> 	z_min = min(nx.minimum.reduce(z0))
> 	z_max = max(nx.maximum.reduce(z0))
> 	image = axes.imshow(z0, vmin=z_min, vmax=z_max)
>
> As an aside: I'd love to hear if anyone knows of a nicer way to get
> Numeric to give you the minimum value of a matrix.
What about:
 z_min=min(ravel(z0))
In [3]:Numeric.ravel?
 ravel(m) returns a 1d array corresponding to all the elements of it's
 argument.
OTOH, I am not sure, if the usage of min (which is a python builtin,
operating on sequences) does not cost some performance.
So maybe
 z_min = nx.minimum.reduce(nx.ravel(z0))
is more efficient?
Best,
Arnd
From: Abraham S. <ab...@cn...> - 2005年08月31日 04:22:16
Thanks! Great catch. Sadly, I have been bitten by this before, but had 
completely forgotten about it. I've switched to just doing vmin=0, 
vmax=1, as I know the range before hand.
Abe
Ken McIvor wrote:
> On Aug 30, 2005, at 10:29 PM, John Hunter wrote:
>
>> I suggest you follow pick through set_data and make_image in the image
>> module to see if you can sort out what is going wrong. Alternatively,
>> if you post an example then I can take a look.
>
>
> I've done Abraham's work for him this time, and attached an example 
> which demonstrates behavior that he *may* be seeing.
>
> The problem is that the minimum and maximum values of the image are 
> determined every time the image is asked to draw itself (in 
> matplotlib.image.AxesImage.__draw()). I assume that what's happening 
> is that the colors aren't fading down the color ramp as the values 
> decay, but are rather staying constant or blurring a little.
>
> This happens because the color ramp is being applied across the 
> current minimum and maximum of the data, rather than across some 
> absolute scale. The solution to this (see the attached script for the 
> example) is to specify a vmin and vmax, which will pin the top and 
> bottom of the color ramp to those values:
>
> # assuming z0 is the initial MxN array that is being decayed...
> z_min = min(nx.minimum.reduce(z0))
> z_max = max(nx.maximum.reduce(z0))
> image = axes.imshow(z0, vmin=z_min, vmax=z_max)
>
> As an aside: I'd love to hear if anyone knows of a nicer way to get 
> Numeric to give you the minimum value of a matrix.
>
> Ken
From: Robert K. <rk...@uc...> - 2005年08月31日 04:17:03
John Hunter wrote:
>>>>>>"Sascha" == Sascha <sas...@gm...> writes:
> 
> 
> Sascha> I am writing a web server app that creates charts among
> Sascha> other things. I am trying to get rid of the temporary file
> Sascha> that I use to transmit the figures created with matplotlib
> Sascha> to the actual web server. Although print_figure says "If
> Sascha> filename is a fileobject, write png to file object (thus
> Sascha> you can, for example, write the png to stdout)" I can't
> Sascha> successfully write anything to stdout. Anyone knows an
> Sascha> example or can give me some hint what I can do to get rid
> Sascha> of the tempfile?
> 
> Short answer: no known way to do this currently, though we'd like to
> figure it out. As far as I know (and could very well be wrong)
> libpng requires a FILE*, which StringIO and cStringIO do not provide.
StringIO isn't the issue here; being able to write to sys.stdout, which
ought to have a valid FILE* underneath, is the issue.
Why not use PIL where it's available? backend_agg2.py has a start at
this. Here's a slightly more fleshed-out (but untested) implementation
for backend_agg.py :
 if not is_string_like(filename):
 try:
 import Image
 have_pil = True
 except ImportError:
 have_pil = False
 if have_pil:
 img = Image.frombuffer('RGBA', (self.width, self.height),
 self.buffer_rgba(0, 0))
 img.write(filename)
 else:
 self.renderer._renderer.write_png(filename)
-- 
Robert Kern
rk...@uc...
"In the fields of hell where the grass grows high
 Are the graves of dreams allowed to die."
 -- Richard Harter
From: Ken M. <km...@gm...> - 2005年08月31日 03:51:46
Attachments: img_wx.py
On Aug 30, 2005, at 10:29 PM, John Hunter wrote:
> I suggest you follow pick through set_data and make_image in the image
> module to see if you can sort out what is going wrong. Alternatively,
> if you post an example then I can take a look.
I've done Abraham's work for him this time, and attached an example 
which demonstrates behavior that he *may* be seeing.
The problem is that the minimum and maximum values of the image are 
determined every time the image is asked to draw itself (in 
matplotlib.image.AxesImage.__draw()). I assume that what's happening 
is that the colors aren't fading down the color ramp as the values 
decay, but are rather staying constant or blurring a little.
This happens because the color ramp is being applied across the current 
minimum and maximum of the data, rather than across some absolute 
scale. The solution to this (see the attached script for the example) 
is to specify a vmin and vmax, which will pin the top and bottom of the 
color ramp to those values:
	# assuming z0 is the initial MxN array that is being decayed...
	z_min = min(nx.minimum.reduce(z0))
	z_max = max(nx.maximum.reduce(z0))
	image = axes.imshow(z0, vmin=z_min, vmax=z_max)
As an aside: I'd love to hear if anyone knows of a nicer way to get 
Numeric to give you the minimum value of a matrix.
Ken
From: John H. <jdh...@ac...> - 2005年08月31日 03:29:07
>>>>> "Abraham" == Abraham Schneider <ab...@cn...> writes:
 Abraham> I haven't had time to do a full search yet, but was
 Abraham> hoping someone might at least have an idea of where to
 Abraham> begin to look. My current suspicions is that there might
 Abraham> be a caching issue.
It could be -- the image module does do some caching. But im.set_data
*does* clear the cache with 
 self._imcache =None
I suggest you follow pick through set_data and make_image in the image
module to see if you can sort out what is going wrong. Alternatively,
if you post an example then I can take a look.
JDH
From: Abraham S. <ab...@cn...> - 2005年08月31日 00:37:24
Sorry, realized I was a little vague. When I say, 'choppy', I mean that 
some cells won't get updated. If there is a lot of activity everything 
looks like, but once activity dies down, some elements stay on in 
various stages (somewhat like bad pixels).
Abraham Schneider wrote:
> Hi. Sorry if this was covered already, but I ran into a recent problem 
> with animating an image using GTKAgg (and matplotlib 0.83.2). In my 
> update_fig() function, I do:
>
> im.set_data(g)
> manager.canvas.draw()
>
> where g is some arbritrary 20x20 array. Over time it's elements will 
> be set to 1, and then decay exponentially. For the majority of the 
> time the array contains all 0s. Under these conditions, it gets very 
> choppy, and skips a large number of frames.
>
> If I do something like: g[0, 0] = 1, then the animation runs smoothly, 
> and looks like it's supposed to (except I now have one cell in the 
> grid set the an incorrect value.
>
> I haven't had time to do a full search yet, but was hoping someone 
> might at least have an idea of where to begin to look. My current 
> suspicions is that there might be a caching issue.
>
> Thanks,
>
> Abe
>
>
> -------------------------------------------------------
> SF.Net email is Sponsored by the Better Software Conference & EXPO
> September 19-22, 2005 * San Francisco, CA * Development Lifecycle 
> Practices
> Agile & Plan-Driven Development * Managing Projects & Teams * Testing 
> & QA
> Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
From: Abraham S. <ab...@cn...> - 2005年08月31日 00:33:26
Hi. Sorry if this was covered already, but I ran into a recent problem 
with animating an image using GTKAgg (and matplotlib 0.83.2). In my 
update_fig() function, I do:
im.set_data(g)
manager.canvas.draw()
where g is some arbritrary 20x20 array. Over time it's elements will be 
set to 1, and then decay exponentially. For the majority of the time the 
array contains all 0s. Under these conditions, it gets very choppy, and 
skips a large number of frames.
If I do something like: g[0, 0] = 1, then the animation runs smoothly, 
and looks like it's supposed to (except I now have one cell in the grid 
set the an incorrect value.
I haven't had time to do a full search yet, but was hoping someone might 
at least have an idea of where to begin to look. My current suspicions 
is that there might be a caching issue.
Thanks,
Abe
From: Ken M. <km...@gm...> - 2005年08月30日 18:15:35
On Aug 30, 2005, at 10:45 AM, Arnd Baecker wrote:
> I would have thought so as well. However I get:
<snip>
> A search for wxPython.h on
> http://www.debian.org/distrib/packages#search_packages
> gives no hits.
Sorry, due to a lack of coffee this morning I misread "wxPython.h" as 
"wxWidgets.h" or something daft, yielding the kneejerk "install the 
-dev package" response.
I wasn't aware of this situation, but it has the potential to be a big 
problem for me at work, where we primarily run Debian. I have emailed 
Ron Lee, the wxgtk2.4 package maintainer, about the situation. We'll 
see what he has to say on the matter.
> I agree. I wonder if anything improved with wx2.6? (for our 
> PlottingCanvas
> we even dared to keep drawing DCs around, and it works without 
> problems...)
What PlottingCanvas is this? I'd be interested in seeing what 
optimizations you guys performed, if the source is available.
>> However, I think there are a couple pieces of lower-handing fruit, 
>> like not
>> making an extra source copy when blitting (_wxagg.cpp:159-190), that 
>> will
>> offer speedups.
>
> That would be cool (I have to admit, that I am not too worried when 
> FPS>100
> on my machine. However, we are currently investigating to use 
> matplotlib for
> a computational physics course (which will be next summer) and many of 
> the
> students have *much* slower machines. So we need maximum speed but 
> with a
> minimum of coding hassle (around 30% of the students have never 
> programmed
> before ...).
Just leveling the playing field between WXAgg and GtkAgg is exciting 
for me, because that means that future efforts at general optimization 
will net a bigger speed improvement for WXAgg.
I'd imagine the plotting speed will be good enough for something along 
the lines of interactive plotting with iPython or visualizing results 
with pylab. Speaking as a recent survivor of a computational physics 
class, I expect you to see a huge benefit from using Python as the 
language and matplotlib as the visualization, especially if you have 
students who have never programmed before.
Ken
From: Matt N. <new...@ca...> - 2005年08月30日 17:15:25
Ken, all,
I'd tried this patch out on Mac OS X, with standard Mac-based python
and wxPython 2.6. I had to explicitly set the environmental variable
WX_CONFIG, but after that it built fine and runs fine.
For my scripts on a slow G4 Powerbook, I see a small improvement in
speed compared with mpl 0.81. I'll be eager to try this on Windows.
Thanks Ken,
--Matt Newville <newville at cars.uchicago.edu>
From: John H. <jdh...@ac...> - 2005年08月30日 15:58:42
>>>>> "Arnd" == Arnd Baecker <arn...@we...> writes:
 >> It does have wxPython.h, it's just not in the libwxgtk2.4
 >> package. You'll need to install the libwxgtk2.4-dev package as
 >> well to get the headers.
 Arnd> I would have thought so as well. However I get:
 ....
 Arnd> A search for wxPython.h on
 Arnd> http://www.debian.org/distrib/packages#search_packages gives
 Arnd> no hits.
I found this too -- it may be rightly considered a bug in the dev
package. I checked out the src package and then copied over the
headers. The following worked for me
 apt-get source libwxgtk2.5.3
 sudo cp -a wxwidgets2.5-2.5.3.2ubuntu4/include/wx-2.5/wx/wxPython /usr/include/wx-2.5/wx/
JDH
From: Arnd B. <arn...@we...> - 2005年08月30日 15:45:54
Hi,
On 2005年8月30日, Ken McIvor wrote:
> On Aug 30, 2005, at 9:31 AM, Arnd Baecker wrote:
[...]
> > a) debian problem:
> > Very interestingly debian stable (sarge)
> > does not have wxPython.h
>
> It does have wxPython.h, it's just not in the libwxgtk2.4 package.
> You'll need to install the libwxgtk2.4-dev package as well to get the
> headers.
I would have thought so as well. However I get:
dpkg -L libwxgtk2.4-dev
/.
/usr
/usr/bin
/usr/bin/wxgtk-2.4-config
/usr/lib
/usr/lib/wx
/usr/lib/wx/include
/usr/lib/wx/include/univ
/usr/lib/wx/include/gtk-2.4
/usr/lib/wx/include/gtk-2.4/wx
/usr/lib/wx/include/gtk-2.4/wx/setup.h
/usr/lib/libwx_gtk-2.4.a
/usr/lib/libwx_gtk_gl-2.4.a
/usr/share
/usr/share/doc
/usr/share/doc/libwxgtk2.4-dev
/usr/share/doc/libwxgtk2.4-dev/copyright
/usr/share/doc/libwxgtk2.4-dev/changelog.gz
/usr/share/man
/usr/share/man/man1
/usr/lib/libwx_gtk-2.4.so
/usr/lib/libwx_gtk_gl-2.4.so
/usr/share/man/man1/wxgtk-2.4-config.1.gz
A search for wxPython.h on
http://www.debian.org/distrib/packages#search_packages
gives no hits.
> > GTKAgg FPS: 131.897223221
> > TkAgg FPS: 65.5153012595
> > WXAgg FPS: 100.55
> > (200 frames: 1.99 seconds, 200 blits: 0.95 seconds)
> > (FPS: 100.55 BPS: 211.00)
> > WXAgg --no-accel FPS: 53.21
> > (200 frames: 3.76 seconds, 200 blits: 2.55 seconds
> > (FPS: 53.21 BPS: 78.40)
> >
> >
> > I am running debian sarge, on a PIV, 2.8 GHz and an nVdia Quadro4 NVS
> > graphics card (@1600x1200).
> > So WXAgg is almost on par with GTGAgg - great!!
>
> That's very exciting news. I hadn't had a chance to test and profile
> the accelerator under Debian, nor had I bothered profiling it against
> GtkAgg and TkAgg under OSX. I should probably get those backends up
> and running (darn macs) and do so.
>
> > Ken, in _wxagg.cpp you mention that you planned to write a
> > agg_to_wx_bitmap()
> > which draws directly to a bitmap, but that this might not speed up
> > things
> > much because of: AGG->wx.Image->wx.Bitmap before you can blit using a
> > MemoryDC.
>
> Yes, I am concerned that re-implementing that part of the blit into C++
> won't speed things up enough. I can understand doing the whole
> Image/Bitmap thing for portability (especially when wxWindows got
> started in 1992), but it's rather obnoxious when all it does is make
> extra copies of RGB data.
I agree. I wonder if anything improved with wx2.6?
(for our PlottingCanvas we even dared to keep
drawing DCs around, and it works without problems...)
> However, I think there are a couple pieces
> of lower-handing fruit, like not making an extra source copy when
> blitting (_wxagg.cpp:159-190), that will offer speedups.
That would be cool
(I have to admit, that I am not too worried when FPS>100
on my machine. However, we are currently investigating
to use matplotlib for a computational physics course
(which will be next summer) and many of the students
have *much* slower machines. So we need maximum speed
but with a minimum of coding hassle (around 30% of the students
have never programmed before ...).
> Unfortunately, they'd be portable across Agg backends, so GtkAgg would
> get faster too. ;-)
I would not mind too much ;-).
> > Maybe you can contact Chris Barker if he has an idea on this (or are
> > there any
> > solutions available in the context of wxart2d or chaco? - quick
> > googling did not
> > reveal anything ...)
>
> I'll do so, if he doesn't see this part of the message than chime in.
> I have come across some old wxWindows mailing list exchanges indicating
> that there's no way to avoid the Image->Bitmap conversion as a
> requirement for drawing RGB images, so I'm not planning to loose too
> much sleep over it. I hadn't heard about wxart2d before, but will look
> into it to see how their agg canvas is implemented. I'll see if I can
> find the chaco repository and do the same there.
>
> Thanks for sharing your anim.py profiling results. It's heartening to
> see WXAgg's full-redraw speed being limited by the rest of matplotlib,
> rather than the backend.
Indeed this is good news!! Many thanks,
Arnd
From: Ken M. <km...@gm...> - 2005年08月30日 15:26:31
On Aug 30, 2005, at 9:31 AM, Arnd Baecker wrote:
> Many thanks for the update of the patch.
> It turned out that I could not apply it to this mornings CVS checkout
> because John's time machine was already active and he has put your
> patch into CVS ;-)
Really? Yay for me! ;-)
> During installation I encountered two glitches:
>
> a) debian problem:
> Very interestingly debian stable (sarge)
> does not have wxPython.h
It does have wxPython.h, it's just not in the libwxgtk2.4 package. 
You'll need to install the libwxgtk2.4-dev package as well to get the 
headers.
> GTKAgg FPS: 131.897223221
> TkAgg FPS: 65.5153012595
> WXAgg FPS: 100.55
> (200 frames: 1.99 seconds, 200 blits: 0.95 seconds)
> (FPS: 100.55 BPS: 211.00)
> WXAgg --no-accel FPS: 53.21
> (200 frames: 3.76 seconds, 200 blits: 2.55 seconds
> (FPS: 53.21 BPS: 78.40)
>
>
> I am running debian sarge, on a PIV, 2.8 GHz and an nVdia Quadro4 NVS
> graphics card (@1600x1200).
> So WXAgg is almost on par with GTGAgg - great!!
That's very exciting news. I hadn't had a chance to test and profile 
the accelerator under Debian, nor had I bothered profiling it against 
GtkAgg and TkAgg under OSX. I should probably get those backends up 
and running (darn macs) and do so.
> Ken, in _wxagg.cpp you mention that you planned to write a 
> agg_to_wx_bitmap()
> which draws directly to a bitmap, but that this might not speed up 
> things
> much because of: AGG->wx.Image->wx.Bitmap before you can blit using a 
> MemoryDC.
Yes, I am concerned that re-implementing that part of the blit into C++ 
won't speed things up enough. I can understand doing the whole 
Image/Bitmap thing for portability (especially when wxWindows got 
started in 1992), but it's rather obnoxious when all it does is make 
extra copies of RGB data. However, I think there are a couple pieces 
of lower-handing fruit, like not making an extra source copy when 
blitting (_wxagg.cpp:159-190), that will offer speedups. 
Unfortunately, they'd be portable across Agg backends, so GtkAgg would 
get faster too. ;-)
> Maybe you can contact Chris Barker if he has an idea on this (or are 
> there any
> solutions available in the context of wxart2d or chaco? - quick 
> googling did not
> reveal anything ...)
I'll do so, if he doesn't see this part of the message than chime in. 
I have come across some old wxWindows mailing list exchanges indicating 
that there's no way to avoid the Image->Bitmap conversion as a 
requirement for drawing RGB images, so I'm not planning to loose too 
much sleep over it. I hadn't heard about wxart2d before, but will look 
into it to see how their agg canvas is implemented. I'll see if I can 
find the chaco repository and do the same there.
Thanks for sharing your anim.py profiling results. It's heartening to 
see WXAgg's full-redraw speed being limited by the rest of matplotlib, 
rather than the backend.
Ken
From: Arnd B. <arn...@we...> - 2005年08月30日 14:31:43
Hi Ken,
On 2005年8月29日, Ken McIvor wrote:
[...]
> I will resubmit the wx-anim.tar.gz patch to sourceforge with this
> correction.
Many thanks for the update of the patch.
It turned out that I could not apply it to this mornings CVS checkout
because John's time machine was already active and he has put your
patch into CVS ;-)
During installation I encountered two glitches:
a) debian problem:
 Very interestingly debian stable (sarge)
 does not have wxPython.h
 As a work-around I downloaded the corresponding source from debian
 wget
http://ftp.debian.org/debian/pool/main/w/wxwindows2.4/wxwindows2.4_2.4.3.1.tar.gz
 and copied all header files wxwindows2.4-2.4.3.1/wxPython/src/*.h
 to a (newly created) /usr/include/wx/wxPython.
 Then the installation went fine.
b) CVS problem:
 Calling python animation_blit_wx.py from the examples directory
 gives the error
 lib/python2.3/site-packages/matplotlib/__init__.py:788: UserWarning:
could not find rc file; returning defaults
 warnings.warn(message)
 Traceback (most recent call last):
 File "animation_blit_wx.py", line 10, in ?
 import pylab as p
 File "/scratch/abaecker/SOFT//lib/python2.3/site-packages/pylab.py",
line 1, in ?
 from matplotlib.pylab import *
 File
"/scratch/abaecker/SOFT//lib/python2.3/site-packages/matplotlib/pylab.py",
line 194, in ?
 import cm
 File
"/scratch/abaecker/SOFT//lib/python2.3/site-packages/matplotlib/cm.py",
line 372, in ?
 atad['Blues']=_Blues_data
 NameError: name '_Blues_data' is not defined
 Commenting out the corresponding block in matplotlib/cm.py
 everything works fine again
 (John: I think this is a leftover from rev. 1.19 for cm.py "removed
extra cmaps until license is resolved")
OK, now to the new WXAgg (and animation in general):
Running:
 python animation_blit.py
 python animation_blit_tk.py
 python animation_blit_wx.py
 python animation_blit_wx.py --no-accel
gives:
 GTKAgg FPS: 131.897223221
 TkAgg FPS: 65.5153012595
 WXAgg FPS: 100.55
 (200 frames: 1.99 seconds, 200 blits: 0.95 seconds)
 (FPS: 100.55 BPS: 211.00)
 WXAgg --no-accel FPS: 53.21
 (200 frames: 3.76 seconds, 200 blits: 2.55 seconds
 (FPS: 53.21 BPS: 78.40)
I am running debian sarge, on a PIV, 2.8 GHz and an nVdia Quadro4 NVS
graphics card (@1600x1200).
So WXAgg is almost on par with GTGAgg - great!!
Ken, in _wxagg.cpp you mention that
you planned to write a agg_to_wx_bitmap() which
draws directly to a bitmap, but that
this might not speed up things much because
of: AGG->wx.Image->wx.Bitmap before you can blit using a MemoryDC.
Maybe you can contact Chris Barker if he has an idea on this
(or are there any solutions available in the context of wxart2d or
chaco? - quick googling did not reveal anything ...)
Anyway, the speed provided by the animate option
is a fantastic improvement - many thanks John and Ken!!
Just for comparison:
for backend in `echo "Tk TkAgg GTK GTKAgg WX WXAgg"`
do
 echo $backend
 python anim.py -d${backend}
done
Tk FPS: 35.5331434162
TkAgg FPS: 20.3487964649
GTK FPS: 35.528699289
GTKAgg FPS: 26.9074415174
WX FPS: 13.7550465745
WXAgg FPS: 26.0163513384
Many thanks,
Arnd
From: John H. <jdh...@ac...> - 2005年08月29日 22:54:58
>>>>> "Vinj" == Vinj Vinj <vin...@ya...> writes:
 Vinj> The following code (is a simple modification of
 Vinj> finance_demo.py) produces a stock chart. SOme of the lines
 Vinj> are thicker than the others. All the lines should have the
 Vinj> same width.
This is a little bug that crops up frequently because of how agg
handles subpixel rendering. I added a little hack to the line
collection code to "snap to pixel center" for len(2) lines. Should
fix your problem.
Use CVS revision
Checking in src/_backend_agg.cpp;
/cvsroot/matplotlib/matplotlib/src/_backend_agg.cpp,v <-- _backend_agg.cpp
new revision: 1.89; previous revision: 1.88
or later.
JDH
From: Charles M. <cm...@in...> - 2005年08月29日 19:06:30
I may be coming in late to this, but I would suggest:
1. Make sure you are up to date with cvs
2. cvs diff -c -3 > my-mpl-changes.diff
I did the tkagg animation and I would be willing to test your wx changes and 
commit barring any problems.
- Charlie
Ken McIvor wrote:
> On Aug 29, 2005, at 12:03 PM, Arnd Baecker wrote:
> 
>> Also I think according to xvsdiff it
>> should not be __init__.py in matplotlib but the one
>> matplotlib/lib/matplotlib/ which should be patched.
>> So I must be doing something wrong here.
> 
> 
> I doubt you're doing anything wrong here. I probably don't know how to 
> generate correct CVS diffs for patching, and didn't think to validate my 
> patch by applying it myself.
> 
> Any advice on submitting diffs against CVS, mailing list?
> 
> Ken
> 
> 
> 
> -------------------------------------------------------
> SF.Net email is Sponsored by the Better Software Conference & EXPO
> September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
> Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
From: Ken M. <km...@gm...> - 2005年08月29日 17:14:21
On Aug 29, 2005, at 12:03 PM, Arnd Baecker wrote:
> Also I think according to xvsdiff it
> should not be __init__.py in matplotlib but the one
> matplotlib/lib/matplotlib/ which should be patched.
> So I must be doing something wrong here.
I doubt you're doing anything wrong here. I probably don't know how to 
generate correct CVS diffs for patching, and didn't think to validate 
my patch by applying it myself.
Any advice on submitting diffs against CVS, mailing list?
Ken
From: Vinj V. <vin...@ya...> - 2005年08月29日 06:31:03
The following code (is a simple modification of
finance_demo.py) produces a stock chart. SOme of the
lines are thicker than the others. All the lines
should have the same width.
VJ
import datetime
from pylab import *
from matplotlib.finance import
quotes_historical_yahoo, plot_day_summary2
import time
axesBG = '#f6f6f6'
figBG = 'w'
date1 = datetime.date( 2002, 2, 1)
date2 = datetime.date( 2004, 12, 12 )
quotes = quotes_historical_yahoo(
 'INTC', date1, date2)
quotetime, open, close, high, low, volume =
zip(*quotes)
numPriceBars = 261
ax = subplot(111)
plot_day_summary2(ax,
open[0:260],close[0:260],high[0:260],low[0:260])
set(ax.get_xticklabels(), 'rotation', 45,
'horizontalalignment', 'right', fontsize=7)
show()
From: Vinj V. <vin...@ya...> - 2005年08月29日 06:13:32
>>Not sure why you are having trouble.
>>htdocs/screenshots/finance_work2.py is working for
me >>with matplotlib CVS, 0.83.2 and 0.83
After seeing that it worked with finance_work2.py and
spending the better half of today on it. It turns out
that
 setp(axMiddle.get_xticklabels(),
'horizontalalignment', 'right', fontsize=textSize,
rotation=45)
has to be right before the show() or the savefig() for
the text to show correctly. In previous version of
matplotlib it did not matter but with 0.83 it has to
be after you have finished plotting. 
Thanks for your help. 
VJ
From: Ken M. <km...@gm...> - 2005年08月28日 06:37:33
I have just submitted a patch against CVS to sourceforge which adds 
support for animation to the WXAgg backend. It also includes an 
optional C++ extension module intended to speed up the conversion from 
an Agg image buffer to a wxPython bitmap or image.
I would really appreciate any feedback you all have to offer, 
especially on the follow points. Thanks in advance!
 1. How does the _wxagg.cpp module look? I've never dealt with Agg 
before, nor have I make a
 Python extension using CXX.
 2. Are the changes to setup.py and setupext.py correct and/or 
sensible? I've tried to keep
 things tidy while dealing with being unable to find the `wx-config' 
program. Since animation
 works without the presence of the WXAgg accelerator, I don't think 
it makes sense to abort the
 build process when BUILD_WXAGG is set to "auto".
 3. What kind of performance increase are you seeing, for both 
blit-based animation and regular
 drawing? I'm not expecting that you see much of an improvement, 
due to limitations in the
 way wxPython deals with raster image data, but it would be useful 
to know.
Ken
From: Nabble F. <li...@na...> - 2005年08月26日 05:34:05
confirm 376844
From: Fernando P. <Fer...@co...> - 2005年08月25日 21:29:31
Charles Moad wrote:
> 	It must be some kind of race condition. I can easily recreate the error on agg 
> and non-agg wx and gtk backends (don't have qt). Here is what I do to cause the 
> error fast.
> 
> plot(rand(100)) # just to have something up
> f = get_current_fig_manager()
> f.canvas<hold down tab>
> # the key repeat will cause rapid fire on the completion
> 
> Straight Gtk periodically spits out something other than seg fault:
> "In [6]:f.canvas.Fatal Python error: PyEval_SaveThread: NULL tstate"
Ah, then it _may_ be an old readline bug. An ipython user discovered it:
http://www.scipy.net/roundup/ipython/issue30
and then it went to python's SF tracker:
http://sourceforge.net/tracker/index.php?func=detail&aid=1166660&group_id=5470&atid=105470
You may have a python version still with the bug in it.
Cheers,
f
From: Charles M. <cm...@in...> - 2005年08月25日 19:26:12
	It must be some kind of race condition. I can easily recreate the error on agg 
and non-agg wx and gtk backends (don't have qt). Here is what I do to cause the 
error fast.
plot(rand(100)) # just to have something up
f = get_current_fig_manager()
f.canvas<hold down tab>
# the key repeat will cause rapid fire on the completion
Straight Gtk periodically spits out something other than seg fault:
"In [6]:f.canvas.Fatal Python error: PyEval_SaveThread: NULL tstate"
Hope this helps,
	Charlie
John Hunter wrote:
>>>>>>"Fernando" == Fernando Perez <Fer...@co...> writes:
> 
> 
> Fernando> Charles Moad wrote:
> >> I can't seem to crash TkAgg, but WXAgg and GTKAgg still do.
> >> This seems to not be related to the repr issue from before.
> >> This is all mpl-cvs btw.
> 
> Fernando> OK, I'm afraid this one may require John's help to
> Fernando> debug. I don't know the mpl internals nearly well
> Fernando> enough to even begin to guess where this could be coming
> Fernando> from.
> 
> Fernando> The fact that it's a segfault and not an uncaught
> Fernando> exception means the bug is triggered inside C code.
> Fernando> <TAB> triggers dir() and getattr() calls, which have to
> Fernando> traverse the object's internal dictionary. If the
> Fernando> object is implemented in C/C++, that traversal can do
> Fernando> arbitrary things, including any number of
> Fernando> segfault-inducing manipulations.
> 
> The canvas object (eg FigureCanvasGTKAgg) is implemented in python.
> It inherits from a gtk base class and an Agg base class. It would be
> useful to test whether you get this behavior on the GTK and WX
> backends (no Agg). My guess is that this is some is caused by a
> threading problem, but can't be sure. This would explain why you see
> it with GTKAgg and WXAgg but not TkAgg.
> 
> JDH

Showing results of 78

1 2 3 4 > >> (Page 1 of 4)
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /