Skip to content

Instantly share code, notes, and snippets.

View insung3511's full-sized avatar
🪖
On army

박인성 (InSung Bahk) insung3511

🪖
On army
View GitHub Profile
import cv2
import time
hog = cv2.HOGDescriptor()
hog.setSVMDetector(cv2.HOGDescriptor_getDefaultPeopleDetector())
cap = cv2.VideoCapture("/path/to/test/video")
while True:
r, frame = cap.read()
if r:
start_time = time.time()