1
2
3
4
5
6
|
#define filter_width 16
#define filter_height 16
static char filter_bits[] = {
0x00, 0x00, 0xfe, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e,
0x7e, 0x7e, 0x7e, 0x7e, 0x02, 0x40, 0x06, 0x60, 0x0e, 0x70, 0x1e, 0x78,
0x3e, 0x7c, 0x7e, 0x7e, 0xfe, 0x7f, 0x00, 0x00};
|