ProgrammingHero1 / security_cam

233 stars 107 forks source link

attribute error #3

Open kokulemarajan opened 3 years ago

kokulemarajan commented 3 years ago

if cv2.Waitkey(10) == ord('q'): attribute error is showing

Dumbo-programmer commented 3 years ago

pardon?

ghost commented 3 years ago

if cv2.Waitkey(10) == ord('q'): attribute error is showing

@kokulemarajan Got the issue It will be cv2.waitKey , not cv2.WaitKey So the code will be

if cv2.waitKey(10) == ord('q'):