├── .idea ├── DNN_Object_Detection.iml ├── misc.xml ├── modules.xml └── other.xml ├── MobileNetSSD_deploy.caffemodel ├── MobileNetSSD_deploy.prototxt.txt ├── README.md ├── dnn_object_detection.py ├── object_detection_classes_pascal_voc.txt ├── output.gif ├── requeriments.txt └── sample.jpeg /.idea/DNN_Object_Detection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNsBhasin/DNN_Object_Detection/HEAD/.idea/DNN_Object_Detection.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNsBhasin/DNN_Object_Detection/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNsBhasin/DNN_Object_Detection/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNsBhasin/DNN_Object_Detection/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /MobileNetSSD_deploy.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNsBhasin/DNN_Object_Detection/HEAD/MobileNetSSD_deploy.caffemodel -------------------------------------------------------------------------------- /MobileNetSSD_deploy.prototxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNsBhasin/DNN_Object_Detection/HEAD/MobileNetSSD_deploy.prototxt.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNsBhasin/DNN_Object_Detection/HEAD/README.md -------------------------------------------------------------------------------- /dnn_object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNsBhasin/DNN_Object_Detection/HEAD/dnn_object_detection.py -------------------------------------------------------------------------------- /object_detection_classes_pascal_voc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNsBhasin/DNN_Object_Detection/HEAD/object_detection_classes_pascal_voc.txt -------------------------------------------------------------------------------- /output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNsBhasin/DNN_Object_Detection/HEAD/output.gif -------------------------------------------------------------------------------- /requeriments.txt: -------------------------------------------------------------------------------- 1 | numpy==1.14.3 2 | opencv-python==3.4.2 -------------------------------------------------------------------------------- /sample.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNsBhasin/DNN_Object_Detection/HEAD/sample.jpeg --------------------------------------------------------------------------------