Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions howdy/src/compare.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Compare incoming video with known faces
# Running in a local python instance to get around PATH issues

# Intercept Ctrl+C and exit gracefully
def handle_sigint(signum, frame):
raise SystemExit

import signal
signal.signal(signal.SIGINT, handle_sigint)

# Import time so we can start timing asap
import time

Expand Down
Loading