Skip to main content

Object Detection Metrics

Project description

This project was forked from rafaelpadilla/Object-Detection-Metrics.

Getting started

Installing object_detection_metrics

$ pip install object_detection_metrics
from podm.podm import get_pascal_voc_metrics

gt_BoundingBoxes = ... # type: List[BoundingBox]
pd_BoundingBoxes = ... # type: List[BoundingBox]
results = get_pascal_voc_metrics(gt_BoundingBoxes, pd_BoundingBoxes, .5)

Implemented metrics

Tutorial.

  • Intersection Over Union (IOU)

  • TP and FP
    • True Positive (TP): IOU ≥ IOU threshold (default: 0.5)

    • False Positive (FP): IOU < IOU threshold (default: 0.5)

  • Precision and Recall

  • Average Precision
    • 11-point AP

    • all-point AP

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

object-detection-metrics-0.1.tar.gz (7.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page