coffee
Coronagraph Optimization For Fast Exoplanet Exploration
image_format.h
Go to the documentation of this file.
1 #ifndef _IMAGEFORMATMODULE_H
2 #define _IMAGEFORMATMODULE_H
3 
4 
5 void __attribute__ ((constructor)) libinit_image_format();
6 int_fast8_t init_image_format();
7 
8 
9 int IMAGE_FORMAT_im_to_ASCII(const char *IDname, const char *foutname);
10 
11 int IMAGE_FORMAT_FITS_to_ASCII(const char *finname, const char *foutname);
12 
13 int image_writeBMP_auto(const char *IDnameR, const char *IDnameG, const char *IDnameB, const char *outname);
14 
15 int CR2toFITS(const char *fnameCR2, const char *fnameFITS);
16 
17 long IMAGE_FORMAT_FITS_to_ushortintbin_lock( const char *IDname, const char *fname);
18 
19 long IMAGE_FORMAT_FITS_to_floatbin_lock( const char *IDname, const char *fname);
20 
21 long IMAGE_FORMAT_read_binary32f(const char *fname, long xsize, long ysize, const char *IDname);
22 
23 int loadCR2toFITSRGB(const char *fnameCR2, const char *fnameFITSr, const char *fnameFITSg, const char *fnameFITSb);
24 
25 int image_format_extract_RGGBchan(const char *ID_name, const char *IDoutR_name, const char *IDoutG1_name, const char *IDoutG2_name, const char *IDoutB_name);
26 
27 #endif
28 
long IMAGE_FORMAT_read_binary32f(const char *fname, long xsize, long ysize, const char *IDname)
Definition: image_format.c:2759
int IMAGE_FORMAT_FITS_to_ASCII(const char *finname, const char *foutname)
long IMAGE_FORMAT_FITS_to_ushortintbin_lock(const char *IDname, const char *fname)
Definition: image_format.c:2813
int image_format_extract_RGGBchan(const char *ID_name, const char *IDoutR_name, const char *IDoutG1_name, const char *IDoutG2_name, const char *IDoutB_name)
Definition: image_format.c:1084
int loadCR2toFITSRGB(const char *fnameCR2, const char *fnameFITSr, const char *fnameFITSg, const char *fnameFITSb)
Definition: image_format.c:1788
int_fast8_t init_image_format()
Definition: image_format.c:272
void __attribute__((constructor)) libinit_image_format()
Definition: 00CORE.c:87
int CR2toFITS(const char *fnameCR2, const char *fnameFITS)
Definition: image_format.c:919
int image_writeBMP_auto(const char *IDnameR, const char *IDnameG, const char *IDnameB, const char *outname)
Definition: image_format.c:597
int IMAGE_FORMAT_im_to_ASCII(const char *IDname, const char *foutname)
Definition: image_format.c:368
long IMAGE_FORMAT_FITS_to_floatbin_lock(const char *IDname, const char *fname)
Definition: image_format.c:2862