2013-04-11 18:34:04 +04:00
|
|
|
#!/usr/bin/env python
|
2012-11-23 22:57:22 +04:00
|
|
|
|
2011-07-12 12:56:03 +00:00
|
|
|
import cv2.cv as cv
|
2011-05-03 16:00:31 +00:00
|
|
|
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)
|