1 /**
2  * This module provides various filter functions that can be performed on
3  * images. Filter functions differ from transformations
4  * (:d:mod:`daffodil.transform`) in that they cannot be performed in-place, ie.
5  * a copy of the image is required to perform the filter.
6  */
7 module daffodil.filter;
8 
9 public {
10     import daffodil.filter.convolve;
11     import daffodil.filter.gaussian;
12 }