21SCENARIO(
"Verify X-Corr with center of light calculation",
"[improc::imageXCorrDiscrete]" )
23 GIVEN(
"two Gaussians" )
25 WHEN(
"1 at geometric center" )
31 mx::math::func::gaussian2D<double>( im0.data(), im0.rows(), im0.cols(), 0., 1.0, 31.5, 31.5, 2 );
32 mx::math::func::gaussian2D<double>( im2.data(), im2.rows(), im2.cols(), 0., 1.0, 31.5 + 4, 31.5 + 4, 2 );
39 xcf.m_peakMethod = mx::improc::xcorrPeakMethod::centroid;
47 std::cerr << x <<
" " << y <<
"\n";
49 REQUIRE( fabs( x - 2 ) < 1e-8 );
50 REQUIRE( fabs( y - 2 ) < 1e-8 );
52 WHEN(
"geometric quarter" )
57 mx::math::func::gaussian2D<double>( im.data(), im.rows(), im.cols(), 0., 1.0, 15.5, 15.5, 2 );
62 REQUIRE( fabs( x - 15.5 ) < 1e-8 );
63 REQUIRE( fabs( y - 15.5 ) < 1e-8 );
int write(const dataT *im, int d1, int d2, int d3, fitsHeader *head)
Write the contents of a raw array to the FITS file.