Have you ever felt scared of leaving your belongings unattended on a table? Introducing KAY/O, a website that uses object recognition to keep track of all your belongings, utilizing only your laptop's camera!
- Object Recognition: KAY/O uses YOLOv8 for object recognition to track your belongings.
- Crash Detection: The system includes a crash detection server to avoid thieves closing the application, or shutting down the laptop.
- Alerts via Twilio: Set up Twilio environment variables to receive text alerts straight to your phone.
https://www.youtube.com/watch?v=aLop-hipPUE
-
Clone the crash detection server repository:
git clone https://github.com/ST2-EV/kayo-cds.git cd kayo-cds -
Set Twilio environment variables:
TWILIO_ACCOUNT_SID=xxxxxxxxxxxx TWILIO_AUTH_TOKEN=xxxxxxxxxxxxx
-
(Optional but recommended) Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows, use `venv\Scripts\activate`
-
Install requirements:
pip install -r requirements.txt
-
Run the application:
python ui.py
