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
|
/*
* This file is part of the HDRL
* Copyright (C) 2015 European Southern Observatory
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* hdrl_fringe.h
*
* Created on: May 11, 2015
* Author: agabasch
*/
#ifndef HDRL_FRINGE_H
#define HDRL_FRINGE_H
/*-----------------------------------------------------------------------------
Includes
-----------------------------------------------------------------------------*/
#include "hdrl_imagelist.h"
#include <cpl.h>
/*-----------------------------------------------------------------------------
Define
-----------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
Functions prototypes
-----------------------------------------------------------------------------*/
cpl_error_code
hdrl_fringe_compute(hdrl_imagelist* ilist_fringe, const cpl_imagelist * ilist_obj,
const cpl_mask* stat_mask, const hdrl_parameter* collapse_params,
hdrl_image** master, cpl_image** contrib_map,
cpl_table ** qctable);
cpl_error_code
hdrl_fringe_correct(hdrl_imagelist * ilist_fringe, const cpl_imagelist * ilist_obj,
const cpl_mask * stat_mask, const hdrl_image * masterfringe,
cpl_table ** qctable);
#if defined HDRL_USE_PRIVATE
cpl_matrix * hdrl_mime_fringe_amplitudes(const cpl_image * img0,
const cpl_mask * mask0);
cpl_matrix * hdrl_mime_fringe_amplitudes_ls(const cpl_image * img0,
const cpl_mask * mask0, const cpl_image * fringe0);
int hdrl_mime_gmix_derivs1(const double x[], const double params[],
double result[]);
int hdrl_mime_gmix1(const double x[], const double params[], double *result);
cpl_matrix *hdrl_mime_hermite_series_create(int n, double center,
double scale, const cpl_matrix * coeffs, const cpl_matrix * x);
cpl_matrix *hdrl_mime_hermite_functions_sums_create(int n, double center,
double scale, const cpl_matrix * x);
#endif
#endif /* HDRL_FRINGE_H */
|