mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 19:20:28 +08:00
57d4c86b2b
Also, removed the one from modules/python/src2/cv.py and cleared its executable bit, since it's not a script.
13 lines
295 B
Python
Executable File
13 lines
295 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import cv2.cv as 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..."
|