48template <
typename floatT>
51 return static_cast<floatT
>( 2.3548200450309493820231386529193992754947713787716 );
63template <
typename floatT>
78template <
typename floatT>
98template <
typename realT>
106 return G0 + G *
exp( -(
static_cast<realT
>( 0.5 ) / ( sigma * sigma ) * ( ( ( x - x0 ) * ( x - x0 ) ) ) ) );
126template <
typename realT>
137 G * std::exp( -( 0.5 / ( sigma * sigma ) * ( ( ( x - x0 ) * ( x - x0 ) ) + ( ( y - y0 ) * ( y - y0 ) ) ) ) );
150template <
typename realT>
163 for(
size_t j = 0;
j < ny; ++
j )
165 for(
size_t i = 0;
i < nx; ++
i )
204template <
typename realT>
219 return G0 + G * std::exp( -0.5 * ( a * dx * dx + 2. * b * dx * dy + c * dy * dy ) );
245template <
typename realT>
256 realT
arg = a * a - 2 * a * c + 4 * b * b + c * c;
259 x2 = 0.5 * ( a + c );
265 x2 = 0.5 * ( a + c ) + 0.5 *
sqrt(
arg );
266 x1 = 0.5 * ( a + c ) - 0.5 *
sqrt(
arg );
270 sigma_x =
sqrt( 1. /
x1 );
271 sigma_y =
sqrt( 1. /
x2 );
281 s = ( a -
x1 ) * ( a -
x1 ) / ( b * b + ( a -
x1 ) * ( a -
x1 ) );
327template <
typename realT>
340 sx2 = sigma_x * sigma_x;
341 sy2 = sigma_y * sigma_y;
375template <
typename realT>
391 return gaussian2D( x, y, G0, G, x0, y0, a, b, c );
419template <
typename realT>
434 for(
size_t j = 0;
j < ny; ++
j )
436 for(
size_t i = 0;
i < nx; ++
i )
471template <
typename realT>
490 gaussian2D( arr, nx, ny, G0, G, x0, y0, a, b, c );
532template <
typename realT>
550 j[2] = 0.5 *
G_G0 * ( 2 * a * ( x - x0 ) + b * ( y - y0 ) );
552 j[3] = 0.5 *
G_G0 * ( b * ( x - x0 ) + 2 * c * ( y - y0 ) );
554 j[4] = -0.5 *
G_G0 * ( ( x - x0 ) * ( x - x0 ) );
556 j[5] = -0.5 *
G_G0 * ( ( x - x0 ) * ( y - y0 ) );
558 j[6] = -0.5 *
G_G0 * ( ( y - y0 ) * ( y - y0 ) );
realT gaussian2D(const realT x, const realT y, const realT G0, const realT G, const realT x0, const realT y0, const realT sigma)
Find value at position (x,y) of the 2D arbitrarily-centered symmetric Gaussian.
floatT sigma2fwhm(floatT sig)
Convert from Gaussian width parameter to FWHM.
floatT fwhm2sigma(floatT fw)
Convert from FWHM to the Gaussian width parameter.
realT gaussian2D_ang(const realT x, const realT y, const realT G0, const realT G, const realT x0, const realT y0, const realT sigma_x, const realT sigma_y, const realT theta)
Find value at position (x,y) of the 2D rotated elliptical Gaussian.
realT gaussian(const realT x, const realT G0, const realT G, const realT x0, const realT sigma)
Find value at position (x) of the 1D arbitrarily-centered symmetric Gaussian.
void gaussian2D_gen2rot(realT &sigma_x, realT &sigma_y, realT &theta, const realT a, const realT b, const realT c)
Convert from (a,b,c) to ( , , ) for the elliptical Gaussian.
void gaussian2D_jacobian(realT *j, const realT x, const realT y, const realT G0, const realT G, const realT x0, const realT y0, const realT a, const realT b, const realT c)
Calculate the Jacobian at position (x,y) for the 2D general elliptical Gaussian.
constexpr floatT twosqrt2log2()
Constant to convert between the Gaussian width parameter and FWHM.
void gaussian2D_rot2gen(realT &a, realT &b, realT &c, const realT sigma_x, const realT sigma_y, const realT theta)
Convert from ( , , ) to (a,b,c) for the elliptical Gaussian.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.