How Object Detection Works
The object detection algorithm identifies and locates all instances of objects in an
image from a known collection of object categories. The algorithm takes an image as
input and outputs the category that the object belongs to, along with a confidence score
that it belongs to the category. The algorithm also predicts the object's location and
scale with a rectangular bounding box. Amazon SageMaker AI Object Detection uses the Single Shot multibox Detector
(SSD)
Various CNNs such as VGG
The object detection algorithm uses standard data augmentation operations, such as flip, rescale, and jitter, on the fly internally to help avoid overfitting.