├── .coveragerc ├── .github └── workflows │ └── pytest.yml ├── .gitignore ├── LICENSE ├── README.md ├── deprecated ├── pascal2json.py ├── sample_2 │ ├── detections.json │ └── groundtruths.json ├── sample_3 │ ├── detections.json │ └── groundtruths.json ├── test_utils.py └── utils.py ├── pyproject.toml ├── requirements.txt ├── requirements_windows.txt ├── setup.cfg ├── src └── podm │ ├── __init__.py │ ├── box.py │ ├── coco.py │ ├── coco2lableme.py │ ├── coco_decoder.py │ ├── coco_encoder.py │ ├── metrics.py │ ├── pascal2coco.py │ └── visualize.py └── tests ├── conftest.py ├── helpers ├── __init__.py └── utils.py ├── sample ├── detections.zip ├── detections_coco.json ├── expected0_5.json ├── groundtruths.zip └── groundtruths_coco.json ├── sample_3 ├── detections.zip ├── detections_coco.json ├── expected0_5.json ├── groundtruths.zip └── groundtruths_coco.json ├── test_box.py ├── test_coco.py ├── test_coco_decoder.py ├── test_coco_encoder.py ├── test_metrics.py ├── test_pascal2coco.py ├── test_pascal_voc_metrics.py ├── test_plot.py └── test_pycocotools.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/README.md -------------------------------------------------------------------------------- /deprecated/pascal2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/deprecated/pascal2json.py -------------------------------------------------------------------------------- /deprecated/sample_2/detections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/deprecated/sample_2/detections.json -------------------------------------------------------------------------------- /deprecated/sample_2/groundtruths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/deprecated/sample_2/groundtruths.json -------------------------------------------------------------------------------- /deprecated/sample_3/detections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/deprecated/sample_3/detections.json -------------------------------------------------------------------------------- /deprecated/sample_3/groundtruths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/deprecated/sample_3/groundtruths.json -------------------------------------------------------------------------------- /deprecated/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/deprecated/test_utils.py -------------------------------------------------------------------------------- /deprecated/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/deprecated/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/requirements_windows.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/podm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/podm/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/src/podm/box.py -------------------------------------------------------------------------------- /src/podm/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/src/podm/coco.py -------------------------------------------------------------------------------- /src/podm/coco2lableme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/src/podm/coco2lableme.py -------------------------------------------------------------------------------- /src/podm/coco_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/src/podm/coco_decoder.py -------------------------------------------------------------------------------- /src/podm/coco_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/src/podm/coco_encoder.py -------------------------------------------------------------------------------- /src/podm/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/src/podm/metrics.py -------------------------------------------------------------------------------- /src/podm/pascal2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/src/podm/pascal2coco.py -------------------------------------------------------------------------------- /src/podm/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/src/podm/visualize.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/helpers/utils.py -------------------------------------------------------------------------------- /tests/sample/detections.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/sample/detections.zip -------------------------------------------------------------------------------- /tests/sample/detections_coco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/sample/detections_coco.json -------------------------------------------------------------------------------- /tests/sample/expected0_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/sample/expected0_5.json -------------------------------------------------------------------------------- /tests/sample/groundtruths.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/sample/groundtruths.zip -------------------------------------------------------------------------------- /tests/sample/groundtruths_coco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/sample/groundtruths_coco.json -------------------------------------------------------------------------------- /tests/sample_3/detections.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/sample_3/detections.zip -------------------------------------------------------------------------------- /tests/sample_3/detections_coco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/sample_3/detections_coco.json -------------------------------------------------------------------------------- /tests/sample_3/expected0_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/sample_3/expected0_5.json -------------------------------------------------------------------------------- /tests/sample_3/groundtruths.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/sample_3/groundtruths.zip -------------------------------------------------------------------------------- /tests/sample_3/groundtruths_coco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/sample_3/groundtruths_coco.json -------------------------------------------------------------------------------- /tests/test_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/test_box.py -------------------------------------------------------------------------------- /tests/test_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/test_coco.py -------------------------------------------------------------------------------- /tests/test_coco_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/test_coco_decoder.py -------------------------------------------------------------------------------- /tests/test_coco_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/test_coco_encoder.py -------------------------------------------------------------------------------- /tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/test_metrics.py -------------------------------------------------------------------------------- /tests/test_pascal2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/test_pascal2coco.py -------------------------------------------------------------------------------- /tests/test_pascal_voc_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/test_pascal_voc_metrics.py -------------------------------------------------------------------------------- /tests/test_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/test_plot.py -------------------------------------------------------------------------------- /tests/test_pycocotools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yfpeng/object_detection_metrics/HEAD/tests/test_pycocotools.py --------------------------------------------------------------------------------