Car recognition

In our last notebook we confirmed that the YOLO model could identify cars in a photograph.

car image

We discovered that YOLO is able to detect multiple cars in an image. However, we did not see which cars were identified.

multiple cars
predict cars

In the above image, the yolo model identified 17 cars and 1 truck.

Therefore we need to write some code that will draw boxes around the cars identified by the YOLO model.

identify cars
  • In your running workbench, navigate to the folder insurance-claim-processing/lab-materials/04.

  • Look for (and open) the notebook called 04-02-car-recognition.ipynb

  • Execute the cells of the notebook, and ensure you understand what is happening