#include <it/types.h>#include <it/filter.h>Go to the source code of this file.
Defines | |
| #define | mirror_add(X, x, d, min, max) |
Functions | |
| mat | mat_filter_fir (mat input, mat filter, int px, int py) |
| #define mirror_add | ( | X, | |||
| x, | |||||
| d, | |||||
| min, | |||||
| max | ) |
Value:
do { \ (X) = (x) + (d); \ if((X) < (min) || (X) >= (max)) \ (X) = (x) - (d); \ } while(0)
Definition at line 29 of file filter.c.
Referenced by mat_filter_fir().
|
|