00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef HAWKI_LOAD_H
00029 #define HAWKI_LOAD_H
00030
00031
00032
00033
00034
00035 cpl_frameset * hawki_extract_frameset(const cpl_frameset *, const char *) ;
00036 cpl_imagelist * hawki_load_frameset(const cpl_frameset *, int, cpl_type) ;
00037 cpl_imagelist * hawki_load_frame(const cpl_frame *, cpl_type) ;
00038 cpl_image * hawki_load_frame_detector(const cpl_frame *, int, cpl_type) ;
00039 cpl_image * hawki_load_frame_extension(const cpl_frame *, int, cpl_type) ;
00040 cpl_image * hawki_load_image(const cpl_frameset *, int, int, cpl_type) ;
00041 cpl_imagelist * hawki_load_detector(const cpl_frameset *, int, cpl_type) ;
00042 cpl_imagelist * hawki_load_extensions(const cpl_frameset *, int, cpl_type) ;
00043 cpl_imagelist * hawki_load_quadrants(const cpl_frameset *, int, int, cpl_type) ;
00044 cpl_image * hawki_load_quadrant(const cpl_frameset *, int, int, int, cpl_type) ;
00045 cpl_image * hawki_load_quadrant_from_file(const char *, int, int, cpl_type) ;
00046 cpl_table ** hawki_load_tables(const cpl_frame * frame);
00047 cpl_bivector ** hawki_load_refined_offsets(const cpl_frame * offsets_frame);
00048 cpl_image * hawki_rebuild_quadrants(const cpl_image *, const cpl_image *,
00049 const cpl_image *, const cpl_image *) ;
00050 cpl_image * hawki_rebuild_detectors(const cpl_image *, const cpl_image *,
00051 const cpl_image *, const cpl_image *) ;
00052 int hawki_get_detector_from_ext(const char *, int) ;
00053 int hawki_get_ext_from_detector(const char *, int) ;
00054 int * hawki_get_ext_detector_mapping
00055 (const char * fname);
00056
00057 #endif