You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These possibly occur inside waveform on zoom/pan. These are apparent when zooming, panning or using scale/side & reset buttons. (The reset buttons are relimiting axis but may also be redrawing them?).
According to matplotlib docs using blitting will help performance issues
Blitting steps:
First we must use backend that supports blitting (macosx backend does not)
Prepare constant background
Mark changing artists as animated
Draw figure excluding animated artists
save copy of RBGA buffer
Render images
restore copy of RGBA buffer
redraw animated artists using Axes.draw_artist/Figure.draw_artist
Currently the library is bottlenecked by calls to
These possibly occur inside waveform on zoom/pan. These are apparent when zooming, panning or using scale/side & reset buttons. (The reset buttons are relimiting axis but may also be redrawing them?).
According to matplotlib docs using blitting will help performance issues
Blitting steps:
Relevant matplotlib docs
Blog post about speeding up matplotlib
The text was updated successfully, but these errors were encountered: