Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```