Concept

Sliding window

An efficient method that is used for object detection. First, train a convolutional neural network (CNN) on closely cropped pictures of the object. Next, create a window frame of a smaller size than the image and place it in a corner over the image. Run a CNN to determine if this window frame matches the cropped version of the object. Move the window to the next part of the image and detect the object again. Repeat this procedure for the entire image. Object detection is very computing intense and is prone to miss the object if the sizes of the window and the object don’t match.

1

3

Updated 2021-03-27

Tags

Data Science