00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef XSH_UTILS_WRAPPERS_H
00021 #define XSH_UTILS_WRAPPERS_H
00022
00023 #include <cpl.h>
00024 #include <xsh_cpl_size.h>
00025 cpl_image*
00026 xsh_image_filter_mode(const cpl_image* b,
00027 const cpl_matrix * ker,
00028 cpl_filter_mode filter);
00029
00030 cpl_polynomial *
00031 xsh_polynomial_fit_1d_create(
00032 const cpl_vector * x_pos,
00033 const cpl_vector * values,
00034 int degree,
00035 double * mse
00036 );
00037
00038
00039 cpl_polynomial * xsh_polynomial_fit_2d_create(cpl_bivector * xy_pos,
00040 cpl_vector * values,
00041 cpl_size* degree,
00042 double * mse);
00043
00044 cpl_image * xsh_image_filter_median(const cpl_image *, const cpl_matrix *);
00045 cpl_image * xsh_image_filter_linear(const cpl_image *, const cpl_matrix *);
00046
00047 #endif