About this Repo
This repo contains simple code to compute object detection metrics. The code in this repo can be packaged and published to PyPI via Poetry.
Getting Started
For package users
Install the package with one of the following commands:
# Poetry users
poetry add obj-det-metrics
# Pip users
pip install obj-det-metrics
Refer to the bin/ directory for examples of using the package.
For contributors
- Install Poetry (refer to the documentation for installation steps)
- Fork this repo and do git clone.
- Run
poetry install
to install dependency packages.
Acknowledgement
- The codes for computing APs and mAP were adapted from
mAP
repo by Cartucho andmapcalc
repo by LeMuecke.