Rename GP_Context -> GP_Pixmap
[gfxprim.git] / include / filters / GP_Filters.h
blob0e2ac76e0707499a63492502a09a8c975e116622
1 /*****************************************************************************
2 * This file is part of gfxprim library. *
3 * *
4 * Gfxprim is free software; you can redistribute it and/or *
5 * modify it under the terms of the GNU Lesser General Public *
6 * License as published by the Free Software Foundation; either *
7 * version 2.1 of the License, or (at your option) any later version. *
8 * *
9 * Gfxprim is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
12 * Lesser General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU Lesser General Public *
15 * License along with gfxprim; if not, write to the Free Software *
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, *
17 * Boston, MA 02110-1301 USA *
18 * *
19 * Copyright (C) 2009-2010 Jiri "BlueBear" Dluhos *
20 * <jiri.bluebear.dluhos@gmail.com> *
21 * *
22 * Copyright (C) 2009-2011 Cyril Hrubis <metan@ucw.cz> *
23 * *
24 *****************************************************************************/
28 GP_Pixmap filters.
32 #ifndef FILTERS_GP_FILTERS_H
33 #define FILTERS_GP_FILTERS_H
35 /* Point filters, brightness, contrast ... */
36 #include "filters/GP_Point.h"
38 /* Addition, difference, min, max ... */
39 #include "filters/GP_Arithmetic.h"
41 /* Histograms, ... */
42 #include "filters/GP_Stats.h"
44 /* Image rotations (90 180 270 grads) and mirroring */
45 #include "filters/GP_Rotate.h"
47 /* Linear convolution Raw API */
48 #include "filters/GP_Linear.h"
50 /* Convolution filters */
51 #include "filters/GP_Convolution.h"
53 /* Blur filters */
54 #include "filters/GP_Blur.h"
56 /* Edge detection filters */
57 #include "filters/GP_EdgeDetection.h"
59 /* Image scaling (resampling) */
60 #include "filters/GP_Resize.h"
61 #include "filters/GP_ResizeNN.h"
62 #include "filters/GP_ResizeLinear.h"
63 #include "filters/GP_ResizeCubic.h"
65 /* Bitmap dithering */
66 #include "filters/GP_Dither.h"
68 /* Laplace based filters */
69 #include "filters/GP_Laplace.h"
71 /* Median filter */
72 #include "filters/GP_Median.h"
74 /* Weighted Median filter */
75 #include "filters/GP_WeightedMedian.h"
77 /* Sigma Mean filter */
78 #include "filters/GP_Sigma.h"
80 /* Gaussian noise filter */
81 #include "filters/GP_GaussianNoise.h"
83 /* Multi tone point filters */
84 #include "filters/GP_MultiTone.h"
85 #include "filters/GP_Sepia.h"
87 #endif /* FILTERS_GP_FILTERS_H */