opencv/tests/python/leak2.py

11 lines
262 B
Python
Raw Normal View History

2011-01-19 08:25:24 +08:00
import cv
import numpy as np
import time
while True:
for i in range(4000):
a = cv.CreateImage((1024,1024), cv.IPL_DEPTH_8U, 1)
b = cv.CreateMat(1024, 1024, cv.CV_8UC1)
2011-01-19 09:43:45 +08:00
c = cv.CreateMatND([1024,1024], cv.CV_8UC1)
2011-01-19 08:25:24 +08:00
print "pause..."