giextraction.h
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 GIEXTRACTION_H
00029 #define GIEXTRACTION_H
00030
00031 #include <giimage.h>
00032
00033
00034 #ifdef __cplusplus
00035 extern "C" {
00036 #endif
00037
00038 struct GiExtraction {
00039 GiImage* spectra;
00040 GiImage* error;
00041 GiImage* npixels;
00042 GiImage* centroid;
00043 GiImage* model;
00044 };
00045
00046 typedef struct GiExtraction GiExtraction;
00047
00048 GiExtraction* giraffe_extraction_new(void);
00049 GiExtraction* giraffe_extraction_create(GiImage* spectra,
00050 GiImage* error,
00051 GiImage* npixels,
00052 GiImage* centroid,
00053 GiImage* model);
00054 void giraffe_extraction_delete(GiExtraction* extraction);
00055 void giraffe_extraction_destroy(GiExtraction* extraction);
00056
00057 #ifdef __cplusplus
00058 }
00059 #endif
00060
00061 #endif