test.py

Andrej Petelin, 2011-02-19 11:41 pm

Download (187 Bytes)

 
1
"""Test script that will fill your memory if not killed with ctrl-c (linux 64bit)
2
"""
3
import cv, numpy
4
5
for i in range(1000000):
6
    a = numpy.ones((30, 30))
7
    mat = cv.fromarray(a)
8
9
10