├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── data └── VOC2007 │ ├── Annotations │ ├── 0.xml │ ├── 1.xml │ ├── 10.xml │ ├── 11.xml │ ├── 12.xml │ ├── 13.xml │ ├── 14.xml │ ├── 15.xml │ ├── 16.xml │ ├── 17.xml │ ├── 2.xml │ ├── 3.xml │ ├── 4.xml │ ├── 5.xml │ ├── 6.xml │ ├── 7.xml │ ├── 8.xml │ └── 9.xml │ ├── ImageSets │ └── Main │ │ ├── test.txt │ │ └── trainval.txt │ └── JPEGImages │ ├── 0.jpg │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 17.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg ├── mmdetection_train_custom_coco_data.ipynb ├── mmdetection_train_custom_data.ipynb └── resize_images.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/README.md -------------------------------------------------------------------------------- /data/VOC2007/Annotations/0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/0.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/1.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/10.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/11.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/12.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/13.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/14.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/15.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/15.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/16.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/17.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/2.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/3.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/4.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/5.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/6.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/7.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/8.xml -------------------------------------------------------------------------------- /data/VOC2007/Annotations/9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/Annotations/9.xml -------------------------------------------------------------------------------- /data/VOC2007/ImageSets/Main/test.txt: -------------------------------------------------------------------------------- 1 | 10 2 | 15 -------------------------------------------------------------------------------- /data/VOC2007/ImageSets/Main/trainval.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/ImageSets/Main/trainval.txt -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/0.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/1.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/10.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/11.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/12.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/13.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/14.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/15.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/16.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/17.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/2.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/3.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/4.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/5.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/6.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/7.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/8.jpg -------------------------------------------------------------------------------- /data/VOC2007/JPEGImages/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/data/VOC2007/JPEGImages/9.jpg -------------------------------------------------------------------------------- /mmdetection_train_custom_coco_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/mmdetection_train_custom_coco_data.ipynb -------------------------------------------------------------------------------- /mmdetection_train_custom_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/mmdetection_train_custom_data.ipynb -------------------------------------------------------------------------------- /resize_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tony607/mmdetection_object_detection_demo/HEAD/resize_images.py --------------------------------------------------------------------------------