31#include "../func/airyPattern.hpp"
40template <
typename realT>
43template <
typename _realT>
44struct airy2D_obs_fitter;
46template <
typename _realT>
47struct airy2D_obs_fitter_ps;
70template <
typename fitterT>
75 typedef typename fitterT::realT realT;
77 static const int nparams = fitterT::nparams;
103 static_assert( nparams == 4,
"fitAiry2D: Wrong setGuess called for platescale and/or cen-obs variable." );
119 static_assert( nparams == 5,
"fitAiry2D: Wrong setGuess called for only platescale variable." );
137 static_assert( nparams == 6,
"fitAiry2D: Wrong setGuess called for cen-obs not variable." );
147 void setArray( realT *data,
int nx,
int ny )
156 void cenObs( realT
co )
219template <
typename realT>
237template <
typename _realT>
242 static const int nparams = 4;
244 static void func( realT *p, realT *
hx,
int m,
int n,
void *adata )
261 for(
int i = 0;
i < arr->
nx;
i++ )
263 for(
int j = 0;
j < arr->
ny;
j++ )
270 static_cast<realT
>(
j ),
293template <
typename _realT>
298 static const int nparams = 5;
300 static void func( realT *p, realT *
hx,
int m,
int n,
void *adata )
318 for(
int i = 0;
i < arr->
nx;
i++ )
320 for(
int j = 0;
j < arr->
ny;
j++ )
328 static_cast<realT
>(
i ),
static_cast<realT
>(
j ), p[0], p[1], p[2], p[3], p[4], arr->
cenObs ) -
344template <
typename _realT>
349 static const int nparams = 6;
351 static void func( realT *p, realT *
hx,
int m,
int n,
void *adata )
370 for(
int i = 0;
i < arr->
nx; ++
i )
372 for(
int j = 0;
j < arr->
ny; ++
j )
380 static_cast<realT
>(
i ),
static_cast<realT
>(
j ), p[0], p[1], p[2], p[3], p[4], p[5] ) -
394template <
typename realT>
400template <
typename realT>
406template <
typename realT>
Class to manage fitting a 2D Airy pattern to data via the levmarInterface.
void setGuess(realT A0, realT A, realT x0, realT y0, realT ps)
Set the initial guess when platescale is variable, and central obscuration is fixed.
void setGuess(realT A0, realT A, realT x0, realT y0)
Set the initial guess when platescale and central obscuration are fixed.
void setGuess(realT A0, realT A, realT x0, realT y0, realT ps, realT co)
Set the initial guess when central-obscuration is variable.
A templatized interface to the levmar package.
int fit()
Perform the fit.
void allocate_params()
Allocate parameters array based on previous call to nParams.
realT * p
Parameter array. On input is the initial estimates. On output has the estimated solution.
int n
I: measurement vector dimension.
void * adata
Pointer to possibly additional data, passed uninterpreted to func & jacf.
realT airyPattern(realT x)
The classical Airy pattern.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
A c++ interface to the templatized levmar minimization routines..
levmarInterface fitter structure for the obstructed Airy pattern, including platescale.
levmarInterface fitter structure for the centrally obscured Airy pattern.
Wrapper for a native array to pass to levmarInterface, with Airy details.
size_t ny
Y dimension of the array.
realT * data
Pointer to the array.
realT cenObs
is the ratio of the circular central obscuration diameter to the diameter.
realT ps
the platescale in
size_t nx
X dimension of the array.