mirror of
https://github.com/rendies/People-Counting-in-Real-Time.git
synced 2025-05-14 18:09:29 +07:00
19 lines
732 B
Python
19 lines
732 B
Python
#===============================================================================
|
|
""" Optional features config. """
|
|
#===============================================================================
|
|
# Enter mail below to receive real-time email alerts
|
|
# e.g., 'email@gmail.com'
|
|
MAIL = ''
|
|
|
|
# ON/OFF for mail feature. Enter True to turn on the email alert feature.
|
|
ALERT = False
|
|
|
|
# Simple log to log the counting data
|
|
Log = False
|
|
# Auto run/Schedule the software to run at your desired time
|
|
Scheduler = False
|
|
# Auto stop the software after certain a time/hours
|
|
Timer = False
|
|
#===============================================================================
|
|
#===============================================================================
|