Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vicradon/final-year-project
Final year project on drone object detection
https://github.com/vicradon/final-year-project
Last synced: 25 days ago
JSON representation
Final year project on drone object detection
- Host: GitHub
- URL: https://github.com/vicradon/final-year-project
- Owner: vicradon
- License: agpl-3.0
- Created: 2023-01-20T12:17:17.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-13T03:21:59.000Z (over 1 year ago)
- Last Synced: 2024-04-28T06:36:01.518Z (8 months ago)
- Language: Python
- Size: 13.7 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Citation: CITATION.cff
Awesome Lists containing this project
README
# Final Year Project
This is an object detection project.
## How to install
Create a virtual environment
```bash
python3 -m venv venv
```Source the virtual environment
```bash
source venv/bin/activate
```Install the requirements
```bash
pip install -r requirements.txt```
## How to run on webcam
Run the webcam project
```bash
python detect.py --weights weights/best.pt --source 0 --conf 0.3
```## Run from Drone Camera
```bash
v4l2-ctl --list-devices
```First setup streaming
```bash
cvlc -vvv v4l2:///dev/video4 --sout '#standard{access=http,mux=ogg,dst=localhost:8080}'
``````bash
python detect.py --source http://localhost:8080 --weights weights/best.pt
```