https://github.com/tjiiv-cprg/visdrone-det-toolkit-python
https://github.com/tjiiv-cprg/visdrone-det-toolkit-python
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tjiiv-cprg/visdrone-det-toolkit-python
- Owner: tjiiv-cprg
- License: mit
- Created: 2020-06-13T03:07:27.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-28T12:19:41.000Z (almost 5 years ago)
- Last Synced: 2025-04-01T17:24:00.352Z (2 months ago)
- Language: Python
- Size: 11.7 KB
- Stars: 10
- Watchers: 0
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# visdrone-det-toolkit-python
Python implementation of evaluation utilities of **[VisDrone2018-DET-toolkit](https://github.com/VisDrone/VisDrone2018-DET-toolkit)**.
### Run Evaluation
Modify the dataset and result directories in evaluate.py and run:
```shell
python evaluate.py
```### Installation and Usage
Installation:
```bash
git clone https://github.com/tjiiv-cprg/visdrone-det-toolkit-python.git
cd visdrone-det-toolkit-python
pip install -e .
```An example of using the function `eval_det` is given below:
```python
from viseval import eval_det
...
ap_all, ap_50, ap_75, ar_1, ar_10, ar_100, ar_500 = eval_det(
annotations, results, heights, widths)
...
```