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
JuliaImages/ImageShow.jl#29 tries to display a sequence of images to the plot pane. The plot count increases as we repeatedly call the play/explore function and thus requires a lot of memory.
Is there a way to not create a new plot for this job? Or maybe just keep the latest n plots?
Originally posted by @IanButterworth
I just noticed that in the example gifs, vscode appears to be creating a new plot per frame? Does it retain the old plots? That would be bad for memory usage
The text was updated successfully, but these errors were encountered:
Hmmm, because ImageShow does not communicate with the IDE directly (it uses show(io, ::MIME"image/png", img) and display(img)), is it possible to add some custom keyword to display(e.g., new_plot=true)?
JuliaImages/ImageShow.jl#29 tries to display a sequence of images to the plot pane. The plot count increases as we repeatedly call the
play
/explore
function and thus requires a lot of memory.Is there a way to not create a new plot for this job? Or maybe just keep the latest
n
plots?The text was updated successfully, but these errors were encountered: