Better tests for ticket #759

This commit is contained in:
James Bowman
2011-01-19 00:25:24 +00:00
parent d2d52c7310
commit 5d0d485fd9
3 changed files with 20 additions and 4 deletions

7
tests/python/leak1.py Normal file
View File

@@ -0,0 +1,7 @@
import cv
import numpy as np
cv.NamedWindow('Leak')
while 1:
leak = np.random.random((480, 640)) * 255
cv.ShowImage('Leak', leak.astype(np.uint8))
cv.WaitKey(10)