Hmm, that is weird. Issue filed:
https://github.com/timholy/ImageView.jl/issues/32
--Tim
On Friday, July 11, 2014 10:27:36 AM David A. wrote:
> How can we free up memory after displaying an image using ImageView module?
>
> To show the image I'm doing:
>
> img = imread("path")
> canv1, imageslice = ImageView.view(img)
>
> And to update it:
>
> ImageView.view(canvas(canv1), img)
>
>
> Memory usage keeps growing with each update. After trying the destroy()
> function the memory remains used. It only frees up that memory after
> closing the REPL window.