├── LICENSE ├── README.md ├── cocoapi ├── .gitignore ├── .travis.yml ├── PythonAPI │ ├── Makefile │ ├── pycocotools │ │ ├── __init__.py │ │ ├── _mask.pyx │ │ ├── calc_acc.py │ │ ├── coco.py │ │ ├── coco_custom.py │ │ ├── cocoeval.py │ │ └── mask.py │ └── setup.py ├── README.txt ├── common │ ├── gason.cpp │ ├── gason.h │ ├── maskApi.c │ └── maskApi.h └── license.txt ├── groundtruth └── annotations_test_sample.csv └── predictions └── predictions_sample.csv /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/README.md -------------------------------------------------------------------------------- /cocoapi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/.gitignore -------------------------------------------------------------------------------- /cocoapi/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/.travis.yml -------------------------------------------------------------------------------- /cocoapi/PythonAPI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/PythonAPI/Makefile -------------------------------------------------------------------------------- /cocoapi/PythonAPI/pycocotools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /cocoapi/PythonAPI/pycocotools/_mask.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/PythonAPI/pycocotools/_mask.pyx -------------------------------------------------------------------------------- /cocoapi/PythonAPI/pycocotools/calc_acc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/PythonAPI/pycocotools/calc_acc.py -------------------------------------------------------------------------------- /cocoapi/PythonAPI/pycocotools/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/PythonAPI/pycocotools/coco.py -------------------------------------------------------------------------------- /cocoapi/PythonAPI/pycocotools/coco_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/PythonAPI/pycocotools/coco_custom.py -------------------------------------------------------------------------------- /cocoapi/PythonAPI/pycocotools/cocoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/PythonAPI/pycocotools/cocoeval.py -------------------------------------------------------------------------------- /cocoapi/PythonAPI/pycocotools/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/PythonAPI/pycocotools/mask.py -------------------------------------------------------------------------------- /cocoapi/PythonAPI/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/PythonAPI/setup.py -------------------------------------------------------------------------------- /cocoapi/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/README.txt -------------------------------------------------------------------------------- /cocoapi/common/gason.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/common/gason.cpp -------------------------------------------------------------------------------- /cocoapi/common/gason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/common/gason.h -------------------------------------------------------------------------------- /cocoapi/common/maskApi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/common/maskApi.c -------------------------------------------------------------------------------- /cocoapi/common/maskApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/common/maskApi.h -------------------------------------------------------------------------------- /cocoapi/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/cocoapi/license.txt -------------------------------------------------------------------------------- /groundtruth/annotations_test_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skrish13/SKU110K-evaluation/HEAD/groundtruth/annotations_test_sample.csv -------------------------------------------------------------------------------- /predictions/predictions_sample.csv: -------------------------------------------------------------------------------- 1 | image_name,x1,y1,x2,y2,score 2 | 3 | --------------------------------------------------------------------------------