In this recipe, you will learn how to detect objects using the Single Shot Detection (SSD) approach with the pretrained MobileNet network. The model supports 20 classes and can be used in many computer vision applications where finding objects in a scene is required, such as vehicle-collision warning. To know more visit https://arxiv.org/abs/1512.02325.
Detecting objects with the Single Shot Detection (SSD) model
Getting ready
Before you proceed with this recipe, you need to install the OpenCV 3.x Python API package.
How to do it...
You need to complete these steps:
- Import...