October 2018
Intermediate to advanced
472 pages
10h 57m
English
This is the same drill that we performed in the previous chapters. First let's install all the dependencies. Here, we are using a Python module called ImageAI (https://github.com/OlafenwaMoses/ImageAI), which is an effective way to start building your own object detection application from scratch in no time:
pip install tensorflowpip install keraspip install numpypip install scipypip install opencv-pythonpip install pillowpip install matplotlibpip install h5py# Here we are installing ImageAIpip3 install https://github.com/OlafenwaMoses/ImageAI/releases/download/2.0.2/imageai-2.0.2-py3-none-any.whl
For this implementation, we are going to use a ...
Read now
Unlock full access