mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
varmapToImage.hpp
Go to the documentation of this file.
1/** \file varmapToImage.hpp
2 * \author Jared R. Males (jaredmales@gmail.com)
3 * \brief A utility to convert a wavefront variance map to an intensity image
4 * \ingroup mxAO_files
5 *
6 */
7
8#ifndef varmapToImage_hpp
9#define varmapToImage_hpp
10
11namespace mx
12{
13namespace AO
14{
15namespace analysis
16{
17
18/// Convert a wavefront variance map to an intensity image by convolving with the PSF.
19/**
20 * The PSF should have odd dimensions, and the peak pixel should be in the center pixel
21 * defined by [0.5*psf.rows(), 0.5*psf.cols()]. The platescale (lambda/D per pixel) of the PSF should match that of
22 * the variance map. The PSF should be normalized such that the center/peak pixel has value 1 (not so that the sum of
23 * pixels is 1).
24 *
25 * \tparam imageT is an Eigen-array-like type.
26 *
27 * \ingroup mxAOAnalytic
28 */
29template <typename imageT>
30void varmapToImage( imageT &im, ///< [out] is the intensity image, resized to match varmap
31 imageT &varmap, ///< [in] is the wavefront variance map
32 imageT &psf ///< [in] is the point spread function
33)
34{
35 typedef typename imageT::Scalar floatT;
36
37 im.resize( varmap.rows(), varmap.cols() );
38 im.setZero();
39
40 floatT psfNorm = 1.0; // psf.sum();
41
42 int psf_i, psf_j;
43 floatT psfVal;
44
45#pragma omp parallel for
46 for( int i = 0; i < im.rows(); ++i )
47 {
48 for( int j = 0; j < im.cols(); ++j )
49 {
50 for( int ii = 0; ii < im.rows(); ++ii )
51 {
52 psf_i = 0.5 * ( psf.rows() ) - ( ii - i );
53
54 if( psf_i < 0 || psf_i >= psf.rows() )
55 continue;
56
57 for( int jj = 0; jj < im.cols(); ++jj )
58 {
59 psf_j = 0.5 * ( psf.cols() ) - ( jj - j );
60
61 if( psf_j >= 0 and psf_j < psf.cols() )
62 {
63 psfVal = psf( psf_i, psf_j ) / psfNorm;
64 im( i, j ) += varmap( ii, jj ) * psfVal;
65 }
66 }
67 }
68 }
69 }
70}
71
72} // namespace analysis
73} // namespace AO
74} // namespace mx
75
76#endif // varmapToImage_hpp
void varmapToImage(imageT &im, imageT &varmap, imageT &psf)
Convert a wavefront variance map to an intensity image by convolving with the PSF.
The mxlib c++ namespace.
Definition mxError.hpp:106