Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 714 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 714 Bytes

visdrone-det-toolkit-python

Python implementation of evaluation utilities of VisDrone2018-DET-toolkit.

Run Evaluation

Modify the dataset and result directories in evaluate.py and run:

python evaluate.py

Installation and Usage

Installation:

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:

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)
...