blob: be00cf2cc0389ed65e5c2ff0fd77016c1e488c9b [file] [log] [blame]
/*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkGaussFilter_DEFINED
#define SkGaussFilter_DEFINED
#include <cstdint>
// Define gaussian filters for values of sigma < 2. Produce values good to 1 part in 1,000,000.
// Gaussian produces values as defined in the SVG 1.1 spec:
// https://www.w3.org/TR/SVG/filters.html#feGaussianBlurElement
// Bessel produces values as defined in "Scale-Space for Discrete Signals" by Tony Lindeberg
class SkGaussFilter {
public:
enum class Type : bool {
Gaussian,
Bessel
};
// Type selects which method is used to calculate the gaussian factors.
SkGaussFilter(double sigma, Type type);
int radius() const { return fN - 1; }
int width() const { return 2 * this->radius() + 1; }
// TODO: remove filterDouble and use the ranged-for loop interface.
// Take an array of values where the gaussian factors will be placed. Return the number of
// values filled.
int filterDouble(double values[5]) const;
// Allow a filter to be used in a C++ ranged-for loop.
const double* begin() const { return &fBasis[0]; }
const double* end() const { return &fBasis[fN]; }
private:
double fBasis[5];
int fN;
};
#endif // SkGaussFilter_DEFINED