cfitsTK
image_format.h
Go to the documentation of this file.
1 #ifndef _IMAGEFORMATMODULE_H
2 #define _IMAGEFORMATMODULE_H
3 
4 
5 int_fast8_t init_image_format();
6 
7 
8 int IMAGE_FORMAT_im_to_ASCII(const char *IDname, const char *foutname);
9 
10 int IMAGE_FORMAT_FITS_to_ASCII(const char *finname, const char *foutname);
11 
12 int image_writeBMP_auto(const char *IDnameR, const char *IDnameG, const char *IDnameB, const char *outname);
13 
14 int CR2toFITS(const char *fnameCR2, const char *fnameFITS);
15 
16 long IMAGE_FORMAT_FITS_to_ushortintbin_lock( const char *IDname, const char *fname);
17 
18 long IMAGE_FORMAT_FITS_to_floatbin_lock( const char *IDname, const char *fname);
19 
20 long IMAGE_FORMAT_read_binary32f(const char *fname, long xsize, long ysize, const char *IDname);
21 
22 int loadCR2toFITSRGB(const char *fnameCR2, const char *fnameFITSr, const char *fnameFITSg, const char *fnameFITSb);
23 
24 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);
25 
26 #endif
27 
int IMAGE_FORMAT_FITS_to_ASCII(const char *finname, const char *foutname)
long IMAGE_FORMAT_FITS_to_floatbin_lock(const char *IDname, const char *fname)
Definition: image_format.c:2850
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:1072
int IMAGE_FORMAT_im_to_ASCII(const char *IDname, const char *foutname)
Definition: image_format.c:356
int CR2toFITS(const char *fnameCR2, const char *fnameFITS)
Definition: image_format.c:907
long IMAGE_FORMAT_FITS_to_ushortintbin_lock(const char *IDname, const char *fname)
Definition: image_format.c:2801
int image_writeBMP_auto(const char *IDnameR, const char *IDnameG, const char *IDnameB, const char *outname)
Definition: image_format.c:585
int loadCR2toFITSRGB(const char *fnameCR2, const char *fnameFITSr, const char *fnameFITSg, const char *fnameFITSb)
Definition: image_format.c:1776
long IMAGE_FORMAT_read_binary32f(const char *fname, long xsize, long ysize, const char *IDname)
Definition: image_format.c:2747
int_fast8_t init_image_format()
Definition: image_format.c:257