opencv64
Results
1
issues of
opencv64
i am unable to load screen. this is the code i used import cv2 cap = cv2.VideoCapture('rtsp://admin:[email protected]:554/1') facedetect=cv2.CascadeClassifier('haarcascade_frontalface_default.xml') while True: ret, frame = cap.read() gray=cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) faces=facedetect.detectMultiScale(gray, 1.3 ,5) for...