Computer Vision: Non-Max Suppression (Object Detection)

A bounding box is a rectangle around an object that specifies its location in the image, its class and a probability metric of confidence describing how likely the object is within that box.

We either use the corner points (x1, y1, x2, y2) or length dimensions along with the center of the bounding box (xc, yc, Height, Width) to enumerate the location of the bounding box.

It is represented using a list-data structure as follows:

  • b_box = [x1, y1, x2, y2, class, confidence]

--

--

We put ghosts in machines.

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store