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 cpl_image*
00025 xsh_image_filter_mode(const cpl_image* b,
00026 const cpl_matrix * ker,
00027 cpl_filter_mode filter);
00028
00029 cpl_polynomial *
00030 xsh_polynomial_fit_1d_create(
00031 const cpl_vector * x_pos,
00032 const cpl_vector * values,
00033 int degree,
00034 double * mse
00035 );
00036
00037
00038 cpl_polynomial * xsh_polynomial_fit_2d_create(cpl_bivector * xy_pos,
00039 cpl_vector * values,
00040 int degree,
00041 double * mse);
00042
00043 cpl_image * xsh_image_filter_median(const cpl_image *, const cpl_matrix *);
00044 cpl_image * xsh_image_filter_linear(const cpl_image *, const cpl_matrix *);
00045
00046 #endif