diff --git a/README.md b/README.md index 47df2d4c675..3759c6524af 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ mmdetection is an open source object detection toolbox based on PyTorch. It is a part of the open-mmlab project developed by [Multimedia Laboratory, CUHK](http://mmlab.ie.cuhk.edu.hk/). +![demo image](demo/coco_test_12510.jpg) + ### Major features - **Modular Design** @@ -34,6 +36,9 @@ This project is released under the [Apache 2.0 license](LICENSE). ## Updates +v0.5.3 (26/11/2018) +- Add Cascade R-CNN and Cascade Mask R-CNN. + v0.5.2 (21/10/2018) - Add support for custom datasets. - Add a script to convert PASCAL VOC annotations to the expected format. diff --git a/demo/coco_test_12510.jpg b/demo/coco_test_12510.jpg new file mode 100644 index 00000000000..1271ae1d8a3 Binary files /dev/null and b/demo/coco_test_12510.jpg differ diff --git a/setup.py b/setup.py index 519190d09ca..625de9ad6d5 100644 --- a/setup.py +++ b/setup.py @@ -93,7 +93,7 @@ def get_version(): package_data={'mmdet.ops': ['*/*.so']}, classifiers=[ 'Development Status :: 4 - Beta', - 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', + 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7',