Skip to content

deepdrivepl/FE8K-eval

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FE8K-eval

An installable library for the AiCityChallenge2024 Track4 evaluation.

Based on FishEye8K and pycocotools

Installation

pip install git+https://github.com/deepdrivepl/FE8K-eval.git

Example

from pycocotools.coco import COCO
from pycocotools.cocoeval_modified import COCOeval

GT_PATH = "path/to/your/labels.json"
RES_PATH = "path/to/your/predictions.json"

coco_gt = COCO(GT_PATH)
coco_dt = coco_gt.loadRes(RES_PATH)

coco_eval = COCOeval(coco_gt, coco_dt, 'bbox')
coco_eval.evaluate()
coco_eval.accumulate()
coco_eval.summarize()

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages