Ask Your Question

velotron's profile - activity

2016-06-22 19:23:14 -0600 answered a question Freeing Memory with Python

Have you tried dereferencing the images?

image = None

Or use the del keyword

del image

This might not free memory being held by opencv, but it's a good first try.