1 #if !defined(MATCH_H)
2 #define MATCH_H
3 
4 #include "core/siril.h"
5 
6 
7 #define NB_OF_MATCHING_TRY 3
8 
9 
10 int new_star_match(fitted_PSF **s1, fitted_PSF **s2, int n, int nobj_override,
11 		double s_min, double s_max,
12 		Homography *H, gboolean print_output);
13 
14 #endif   /* MATCH_H */
15