Last change
on this file since 2662 was
2662,
checked in by Sam Hocevar, 14 years ago
|
- sharpen.c: add a sharpen filter example, using our generic convolution
routine. Note that it is not the "real" sharpen which should be built
on top of a gaussian kernel.
|
File size:
412 bytes
|
Line | |
---|
1 | # $Id$ |
---|
2 | |
---|
3 | AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/pipi |
---|
4 | |
---|
5 | bin_PROGRAMS = blur dither edd img2rubik sharpen |
---|
6 | |
---|
7 | blur_SOURCES = blur.c |
---|
8 | blur_LDADD = ../pipi/libpipi.la |
---|
9 | |
---|
10 | dither_SOURCES = dither.c |
---|
11 | dither_LDADD = ../pipi/libpipi.la |
---|
12 | |
---|
13 | edd_SOURCES = edd.c |
---|
14 | edd_LDADD = ../pipi/libpipi.la |
---|
15 | |
---|
16 | img2rubik_SOURCES = img2rubik.c |
---|
17 | img2rubik_LDADD = ../pipi/libpipi.la |
---|
18 | |
---|
19 | sharpen_SOURCES = sharpen.c |
---|
20 | sharpen_LDADD = ../pipi/libpipi.la |
---|
21 | |
---|
Note: See
TracBrowser
for help on using the repository browser.