├── README.md ├── create_coco_tf_record.py ├── dataset_util.py └── pycocotools ├── __init__.py ├── __init__.pyc ├── __pycache__ ├── __init__.cpython-35.pyc ├── coco.cpython-35.pyc └── mask.cpython-35.pyc ├── _mask.c ├── _mask.cpython-35m-x86_64-linux-gnu.so ├── _mask.pyx ├── coco.py ├── coco.pyc ├── cocoeval.py ├── mask.py └── mask.pyc /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/README.md -------------------------------------------------------------------------------- /create_coco_tf_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/create_coco_tf_record.py -------------------------------------------------------------------------------- /dataset_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/dataset_util.py -------------------------------------------------------------------------------- /pycocotools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /pycocotools/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/pycocotools/__init__.pyc -------------------------------------------------------------------------------- /pycocotools/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/pycocotools/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /pycocotools/__pycache__/coco.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/pycocotools/__pycache__/coco.cpython-35.pyc -------------------------------------------------------------------------------- /pycocotools/__pycache__/mask.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/pycocotools/__pycache__/mask.cpython-35.pyc -------------------------------------------------------------------------------- /pycocotools/_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/pycocotools/_mask.c -------------------------------------------------------------------------------- /pycocotools/_mask.cpython-35m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/pycocotools/_mask.cpython-35m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /pycocotools/_mask.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/pycocotools/_mask.pyx -------------------------------------------------------------------------------- /pycocotools/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/pycocotools/coco.py -------------------------------------------------------------------------------- /pycocotools/coco.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/pycocotools/coco.pyc -------------------------------------------------------------------------------- /pycocotools/cocoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/pycocotools/cocoeval.py -------------------------------------------------------------------------------- /pycocotools/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/pycocotools/mask.py -------------------------------------------------------------------------------- /pycocotools/mask.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaPeak/tensorflow_object_detection_create_coco_tfrecord/HEAD/pycocotools/mask.pyc --------------------------------------------------------------------------------