14 #ifndef CLIPM_CENTROIDING_H
15 #define CLIPM_CENTROIDING_H
36 const cpl_size window_xxyy[4],
38 double *xy_centre_err,
43 double *centre_intensity,
47 const cpl_size window_xxyy[4],
48 int allow_wdw_enlarge,
50 double *out_xy_centre,
51 double *out_xy_centre_err,
54 double *centre_intensity);
57 const cpl_image *image,
58 const cpl_matrix *locations,
60 cpl_matrix **xy_centre,
61 cpl_matrix **xy_centre_err,
62 cpl_matrix **xy_sigma,
63 cpl_matrix **xy_sigma_err,
65 cpl_matrix **xy_fwhm_err,
66 cpl_matrix **centre_intensities,
67 cpl_array **all_error_codes,
cpl_error_code clipm_centroiding_gauss(const cpl_image *image, const cpl_size window_xxyy[4], double *xy_centre, double *xy_centre_err, double *xy_sigma, double *xy_sigma_err, double *xy_fwhm, double *xy_fwhm_err, double *centre_intensity, int robustness)
Determine the position of an object in an image window, for x and y separately, by collapsing the ima...
Definition: clipm_centroiding.c:524
cpl_error_code clipm_centroiding_multi_gauss(const cpl_image *image, const cpl_matrix *locations, cpl_size areasize, cpl_matrix **xy_centre, cpl_matrix **xy_centre_err, cpl_matrix **xy_sigma, cpl_matrix **xy_sigma_err, cpl_matrix **xy_fwhm, cpl_matrix **xy_fwhm_err, cpl_matrix **centre_intensities, cpl_array **all_error_codes, int robustness)
Invoke clipm_centroiding_gauss() at several locations in an image.
Definition: clipm_centroiding.c:1261
cpl_error_code clipm_centroiding_moment(const cpl_image *image, const cpl_size window_xxyy[4], int allow_wdw_enlarge, double gain, double *out_xy_centre, double *out_xy_centre_err, double *out_xy_sigma, double *out_xy_fwhm, double *centre_intensity)
Determine the barycenter of an object in an image window.
Definition: clipm_centroiding.c:887