When training an object detection model, you have surely stumbled across the Intersection over Union, in short IoU. In this short post, I will explain what it is and how to implement it in native Python. Furthermore, I will describe the implementation in Tensorflow using vector operations, so that it…
Comments closedCategory: Object Detection
Simple object localization and classification using a convolutional neural network build with Tensorflow/Keras in Python. In my previous post I wrote about a simple object localization problem: predicting the bounding box of a single rectangle on neutral background. However, this approach was limited to a single shape and could not…
Comments closedSimple introduction to object localization using a convolutional neural network build with Tensorflow/Keras in Python. In the past days I worked myself into object detection with neural networks. For simplicity, I decided to start with a simple task: predict the bounding box of one single rectangle on a neutral background.…
Comments closed