1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_NR_FILTER_GAUSSIAN_H
#define SEEN_NR_FILTER_GAUSSIAN_H
/*
* Gaussian blur renderer
*
* Authors:
* Niko Kiirala <niko@kiirala.com>
* bulia byak
* Jasper van de Gronde <th.v.d.gronde@hccnet.nl>
*
* Copyright (C) 2006 authors
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include <2geom/forward.h>
#include "display/nr-filter-primitive.h"
enum
{
BLUR_QUALITY_BEST = 2,
BLUR_QUALITY_BETTER = 1,
BLUR_QUALITY_NORMAL = 0,
BLUR_QUALITY_WORSE = -1,
BLUR_QUALITY_WORST = -2
};
namespace Inkscape {
namespace Filters {
class FilterGaussian : public FilterPrimitive
{
public:
FilterGaussian();
~FilterGaussian() override;
void render_cairo(FilterSlot &slot) const override;
void area_enlarge(Geom::IntRect &area, Geom::Affine const &m) const override;
bool can_handle_affine(Geom::Affine const &m) const override;
double complexity(Geom::Affine const &ctm) const override;
/**
* Set the standard deviation value for gaussian blur. Deviation along
* both axis is set to the provided value.
* Negative value, NaN and infinity are considered an error and no
* changes to filter state are made. If not set, default value of zero
* is used, which means the filter results in transparent black image.
*/
void set_deviation(double deviation);
/**
* Set the standard deviation value for gaussian blur. First parameter
* sets the deviation alogn x-axis, second along y-axis.
* Negative value, NaN and infinity are considered an error and no
* changes to filter state are made. If not set, default value of zero
* is used, which means the filter results in transparent black image.
*/
void set_deviation(double x, double y);
Glib::ustring name() const override { return Glib::ustring("Gaussian Blur"); }
private:
double _deviation_x;
double _deviation_y;
};
} // namespace Filters
} // namespace Inkscape
#endif // SEEN_NR_FILTER_GAUSSIAN_H
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
|