5. Filtering
Contents
5. Filtering¶
Filtering images is at the core of image processing. The idea is to use a small image that travels across a larger image and does some operation on each sub-region of this larger image. In the simplest case, we can imagine that a small square travels across the image and computes the local mean of the pixels with which it overlaps. This is then a mean filter:
from IPython.display import HTML, display
HTML(filename='illustrations//convol_mean.html')