separated opencv 1.x and opencv 2.x wrappers. moved tests/python/* to modules/python/test
This commit is contained in:
10
modules/python/test/leak2.py
Normal file
10
modules/python/test/leak2.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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)
|
||||
c = cv.CreateMatND([1024,1024], cv.CV_8UC1)
|
||||
print "pause..."
|
Reference in New Issue
Block a user