First time here? Check out the FAQ!
answered 2013-07-02 01:47:00 -0600
aw man, try this instead:
cv2.namedWindow("lll") cap = cv2.VideoCapture(0) while( cap.isOpened() ) : ret,img = cap.read() cv2.imshow("lll",img) k = cv2.waitKey(10) if k == 27: break