|
A Survey of Gaussian Convolution Algorithms
|
Alvarez-Mazorra approximate Gaussian convolution. More...
Alvarez-Mazorra approximate Gaussian convolution.
Copyright (c) 2011-2013, Pascal Getreuer All rights reserved.
This program is free software: you can redistribute it and/or modify it under, at your option, the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version, or the terms of the simplified BSD license.
You should have received a copy of these licenses along with this program. If not, see http://www.gnu.org/licenses/ and http://www.opensource.org/licenses/bsd-license.html.
Definition in file gaussian_conv_am.c.
Go to the source code of this file.
Functions | |
| static num | am_left_boundary (const num *data, long N, long stride, num nu, long num_terms) |
| Handling of the left boundary for Alvarez-Mazorra. More... | |
| void | am_gaussian_conv (num *dest, const num *src, long N, long stride, double sigma, int K, num tol, int use_adjusted_q) |
| Gaussian convolution with Alvarez-Mazorra. More... | |
| void | am_gaussian_conv_image (num *dest, const num *src, int width, int height, int num_channels, num sigma, int K, num tol, int use_adjusted_q) |
| 2D Gaussian convolution with Alvarez-Mazorra More... | |
|
static |
Handling of the left boundary for Alvarez-Mazorra.
| data | signal data |
| N | number of elements |
| stride | stride between successive samples |
| nu | filter parameter nu |
| num_terms | number of terms to use to approximate infinite sum |
This routine approximates the infinite sum
by adding the first num_terms terms.
Definition at line 38 of file gaussian_conv_am.c.
1.8.3.1