The Flutter Shutter Code Optimizer
 All Files Functions Macros Pages
flutter_optimiser_gaussian.h
Go to the documentation of this file.
1 /*flutter_optimizer_gaussian.h*/
2 /*
3 * Copyright 2014 IPOL Image Processing On Line http://www.ipol.im/
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
19 
20 
21 void gaussian_optimiser(double* code, double sigma, int code_length,
22  double deltat);
23 
24 double gaussian_integrand(double velocity_max, double deltat, double xi,
25  int k);
26 
27 double gaussian_w(double sigma, double xi);
28 
29 double gaussian_w_integrand(double velocity,double sigma,
30  double xi);
void gaussian_optimiser(double *code, double sigma, int code_length, double deltat)
Functions for the gaussian case :
double gaussian_integrand(double velocity_max, double deltat, double xi, int k)
Function to integrate in order to compute the a_k coefficient of the code; gaussian motion model...
double gaussian_w(double sigma, double xi)
Computes the W() function; gaussian motion model. This is equation (15): W():={}^{4{ N}} ({{-v^2}{2{ ...
double gaussian_w_integrand(double velocity, double sigma, double xi)
Function to integrate in velocity to get the W function; gaussian motion model. This is the integrand...