CR2RE Pipeline Reference Manual 1.6.10
hdrl_mode_defs.h
1/*
2 * hdrl_mode.h
3 *
4 * Created on: Mar 1, 2021
5 * Author: agabasch
6 */
7
8/*
9 * This file is part of the HDRL
10 * Copyright (C) 2021 European Southern Observatory
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 */
26
27#ifndef HDRL_MODE_DEFS_H
28#define HDRL_MODE_DEFS_H
29
30#include <cpl.h>
31
32CPL_BEGIN_DECLS
33
34/*----------------------------------------------------------------------------*/
39/*----------------------------------------------------------------------------*/
40typedef enum {
41
43 HDRL_MODE_MEDIAN,
45 HDRL_MODE_WEIGHTED,
47 HDRL_MODE_FIT
48} hdrl_mode_type;
49
50CPL_END_DECLS
51
52#endif /* HDRL_MODE_DEFS_H */
53