fmarcano
Results
1
comments of
fmarcano
using: def loopcv(): import cv while 1: depth,_ = freenect.sync_get_depth() cv.ShowImage('hi',depth.astype(np.uint8)) cv.WaitKey(10) instead of : def loopcv(): import cv while 1: cv.ShowImage('hi',get_depth().astype(np.uint8)) cv.WaitKey(10) it works.