Skip to content
Advertisement

Matplotlib FuncAnimation Created twice – duplicate when embbeded in tkinter

I have a troubleing bug that i just could not understands it’s origin. Several days of attempts and still no luck.

I’m trying to create a line cursor that correspond to played audio with FuncAnimation and for some reason, the animation is created twice ONLY when the callback (line_select_callback) that activates the function is triggered from RectangleSelector widget after drawing wiith the mouse. when I use a standard TK button to activate the SAME function (line_select_callback), it operates well.

some debugging code with reevant prints is present.

I’ve created minimal working example. My guess is it has something to do with the figure that is not attached to the tk window, and is silently activated in addition to the embedded figure, I’m not really sure.

Any help will be very much appreciated, Thanks! :)

JavaScript

Advertisement

Answer

I managed to isolate the cause for this issue: The presence of the rectangle selector (which uses blitting) and the use of animation (which also uses blitting) on the same axes. I’ve managed to create the animation properly, but only when I disabled the rectangle selector

JavaScript

and removed his artists (i needed to do that manually in my code) using:

JavaScript

after that, The animation worked properly.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement