File: hdrl_overscan_defs.h

package info (click to toggle)
cpl-plugin-xshoo 3.5.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 20,920 kB
  • sloc: ansic: 170,001; sh: 4,369; python: 2,391; makefile: 1,211
file content (79 lines) | stat: -rw-r--r-- 2,765 bytes parent folder | download | duplicates (23)
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
71
72
73
74
75
76
77
78
79
/*
 * This file is part of the HDRL
 * Copyright (C) 2013 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
 */

#ifndef HDRL_OVERSCAN_DEFS_H
#define HDRL_OVERSCAN_DEFS_H

#ifndef HDRL_USE_PRIVATE
#error This file is not allowed to be included outside of hdrl
#endif

#include "hdrl_types.h"
#include "hdrl_image.h"
#include <cpl.h>

CPL_BEGIN_DECLS

/** @cond PRIVATE */

/*----------------------------------------------------------------------------*/
/**
  @struct _hdrl_overscan_compute_result_
  @brief Contains the Overscan Computation results
 */
/*----------------------------------------------------------------------------*/
struct _hdrl_overscan_compute_result_
{
    /** The direction in which the image were collapsed in the computation */
    hdrl_direction      correction_direction;     
    /** The overscan correction as a 1D double image */
    hdrl_image       *   correction;
    /** The number of good pixels that contributed as a 1D double image */
    cpl_image       *   contribution;
    /** The \f$\chi^{2}\f$ as a 1D double image */
    cpl_image       *   chi2;
    /** The reduced \f$\chi^{2}\f$ as a 1D double image */
    cpl_image       *   red_chi2;
    /** The low threshold below which the pixels are rejected 
        as a 1D double image. Only for sigma-clipping collapsing method */
    cpl_image       *   sigclip_reject_low;
    /** The high threshold above which the pixels are rejected 
        as a 1D double image. Only for sigma-clipping collapsing method */
    cpl_image       *   sigclip_reject_high;
};

/*----------------------------------------------------------------------------*/
/**
  @struct _hdrl_overscan_correct_result_
  @brief Contains the Overscan Correction results
 */
/*----------------------------------------------------------------------------*/
struct _hdrl_overscan_correct_result_
{
    /** The Overscan corrected image */
    hdrl_image   *   corrected;
    /** Pixels marked as bad by algorithm, encoded by user choice */
    cpl_image   *   badmask;
};

/** @endcond */

CPL_END_DECLS

#endif