SINFONI Pipeline Reference Manual  2.5.2
sinfo_merge.h
1 #ifndef SINFO_MERGE_H
2 #define SINFO_MERGE_H
3 /*
4  * This file is part of the ESO SINFONI Pipeline
5  * Copyright (C) 2004,2005 European Southern Observatory
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, 51 Franklin St, Fifth Floor, Boston, MA 02111-1307 USA
20  */
21 /*******************************************************************************
22 * E.S.O. - VLT project
23 *
24 * "@(#) $Id: sinfo_merge.h,v 1.4 2007-06-06 07:10:45 amodigli Exp $"
25 *
26 * who when what
27 * -------- -------- ----------------------------------------------
28 * schreib 04/07/00 created
29 */
30 
31 /************************************************************************
32  * sinfo_merge.h
33  * merges the rows of two image data frames into one frame with doubled
34  * column length
35  *----------------------------------------------------------------------
36  */
37 
38 /*
39  * header files
40  */
41 #include <cpl.h>
42 #include "sinfo_msg.h"
43 #include "sinfo_recipes.h"
44 
45 /*
46  * function prototypes
47  */
48 
61 cpl_image *
62 sinfo_sinfo_merge_images (cpl_image * im1,
63  cpl_image * im2,
64  cpl_image * res_image ) ;
65 
78 cpl_image *
79 sinfo_new_remove_general_offset(cpl_image * im1,
80  cpl_image * im2,
81  cpl_image * res_image,
82  int n ) ;
83 
94 cpl_image *
95 sinfo_new_remove_regional_tilt (cpl_image * im1,
96  cpl_image * im2,
97  cpl_image * res_image ) ;
98 
110 cpl_image * sinfo_new_remove_column_offset (cpl_image * im1,
111  cpl_image * im2,
112  cpl_image * res_image );
113 
123 cpl_image *
124 sinfo_new_remove_residual_tilt (cpl_image * im2,cpl_image * res_image ) ;
125 
126 
137 cpl_image *
138 sinfo_new_remove_residual_offset(cpl_image * im2,cpl_image * res_image);
139 
140 
141 #endif