SSD-Single Shot Detector
There is one class of models for localization and object detection, called Single Shot Detectors , which are even faster and require less computational cost in general. By processing the image only once and output the prediction immediately, these types of models are called Single Shot Detectors. Single Shot Detectors(SSD): Instead of having a dedicated system to propose ROIs, we have a set of predefined boxes to look for objects, which are forwarded to a bunch of convolutional layers to predict class scores and bounding box offsets . Then for each box we predict a number of bounding boxes with a confidence score assigned to each one, we detect one object centered in that box and we output a set of probabilities for each possible class. Once we have all that, we simply and maybe naively keep only the box with high confidence score. Details below adopt from: https://towardsdatascience.com/review-ssd-single-shot-detector-object-detection-851a9460...