인식
-
라즈베리파이에서 OpenCV 정리_2전공공부/리눅스 2021. 7. 19. 23:00
안녕하세요. 개알못입니다~ 저번에 이어서 opencv 관련 내용입니다. 좀더 여유가 있을 때 내용르 보충하겠습니다 :) 1. 실시간 데이터 수집 # 개알못 import cv2 import os cam = cv2.VideoCapture(0) cam.set(3, 640) # set video width cam.set(4, 480) # set video height face_detector = cv2.CascadeClassifier('haarcascade_frontalface_default.xml') face_id = input(" Write your registration number") print(" Look at the camera and wait a minute") count = 0 while(True..