2012-11-24 02:57:22 +08:00
|
|
|
#/usr/bin/env python
|
|
|
|
|
2011-07-12 20:56:03 +08:00
|
|
|
import cv2.cv as cv
|
2011-05-04 00:00:31 +08: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)
|