Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sghuang19/wildlife-monitor
A wildlife camera for detection and notification.
https://github.com/sghuang19/wildlife-monitor
Last synced: 3 months ago
JSON representation
A wildlife camera for detection and notification.
- Host: GitHub
- URL: https://github.com/sghuang19/wildlife-monitor
- Owner: sghuang19
- Created: 2024-02-15T14:59:13.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-04-30T22:18:40.000Z (9 months ago)
- Last Synced: 2024-05-06T04:27:07.165Z (9 months ago)
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wildlife Camera with Raspberry Pi
A course project for [CSE 40373 Embedded System
Development](https://github.com/adstriegel/cse40373-sp24) at the University of
Notre Dame.Group members include:
- Steven Baranko ([@StevenBaranko](https://github.com/SteveBaranko)):
[[email protected]](mailto://[email protected])
- Samuel Huang ([@sghuang19](https://github.com/sghuang19)):
[[email protected]](mailto://[email protected])This project implements a system to detect and classify animals with a
combination of motion sensor, webcam,
[YOLOv8](https://github.com/ultralytics/ultralytics) model, send a notification
to user's smartphone, and upload the captured image to Google Drive.The system has a modular design:
- `config.py`: Configurations of this app.
- `main.py`: Entry point of this app.
- `motion.py`: Initialization of PIR motion sensor.
- `capture.py`: Utilities for capturing frames from video device, e.g. a
webcam.
- `detect.py`: Feed the frame captured into image detection model.
- `notify.py`: Send notification to the user's smartphone using
[Bark](https://github.com/Finb/Bark).
- `upload.py`: Upload the captured image to Google Drive through API.To try this app, you will need to create your own **Google Drive API
credential**, **folder ID**, and **Bark API address**. The API keys in the
source code will be deprecated when this repo is made public.