Brain Dump

Moving Weighted Average

Tags
computer-graphics

A way of blurring an image by replacing values in a sequence with the average of a moving window through the sequence.

\[ b_{smooth}[i] = \frac{1}{2r+1} \sum_^{i+r} b[j] \]

We can [see page 11, weight] samples in the sequence to get a more gaussian like affect.