In this chapter, we will look at the YOLO (You Only Look Once) method for object detection. The chapter is split in two parts: in the first section we learn how the algorithm works, and in the second section, I will give an example of how you can use it in your own Python projects.
Keep in mind that YOLO is quite complicated, so for 99% of you, a pre-trained model is the best choice for doing object detection. For the 1% at the forefront of the research, you probably don’t need this book anyway and you should know how to do object ...