Sliding Window v/s Convolution

When creating a post, please add:

1 Like

Buy itself, a sliding window is just a data clipper.
A convolution also uses sliding, but it goes further and also transforms the data.

As the title suggested - “Convolutional Implementation of Sliding Windows”, they are achieving the same goal in two different ways!

Cheers,
Raymond

I have the same question. Rewording for clarity, the question would be “Is the convolution implementation of sliding window algorithm the same as a normal ConvNet?”.

To my knowledge and research, they seem to be the same. Normal ConvNets (CNNs) have implicit sliding window mechanism under (by means of convolution operations). I’m also a learner and no expert, so I could be wrong though.