-
Notifications
You must be signed in to change notification settings - Fork 0
/
human_detection.py
35 lines (26 loc) · 976 Bytes
/
human_detection.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import cv2
# Inicializar el detector HOG con el clasificador preentrenado para humanos
hog = cv2.HOGDescriptor()
hog.setSVMDetector(cv2.HOGDescriptor_getDefaultPeopleDetector())
# Capturar video desde la cámara
cap = cv2.VideoCapture(0)
while True:
ret, frame = cap.read()
if not ret:
break
# Redimensionar la imagen para mejorar la velocidad de procesamiento
frame = cv2.resize(frame, (640, 480))
# Detectar personas en el fotograma
(rects, _) = hog.detectMultiScale(frame, winStride=(4, 4),
padding=(8, 8), scale=1.05)
# Dibujar los cuadros alrededor de las detecciones
for (x, y, w, h) in rects:
cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2)
# Mostrar el resultado
cv2.imshow('Detección de Humanos', frame)
# Presiona 'q' para salir
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# Liberar los recursos
cap.release()
cv2.destroyAllWindows()