mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
zernikeBasis.hpp
Go to the documentation of this file.
1/** \file zernikeBasis.hpp
2 * \author Jared R. Males (jaredmales@gmail.com)
3 * \brief Generating a Zernike basis.
4 * \ingroup mxAO_files
5 *
6 */
7
8#ifndef __zernikeBasis_hpp__
9#define __zernikeBasis_hpp__
10
11#include "../sigproc/zernike.hpp"
12#include "../improc/fitsFile.hpp"
13
14namespace mx
15{
16
17namespace AO
18{
19
20/// Make the Zernike basis
21/**
22 * \param [in] basisName the name of the basis (not including the mx::AO path)
23 * \param [in] dim the linear size of the maps, that is they will be dimxdim in size.
24 * \param [in] N is the number of degrees of freedom. Number of modes will be (N+1)(N+1) - 1.
25 *
26 * \tparam realT the real numeric type for calculations
27 */
28template <typename realT>
29void makeZernikeBasis( const std::string &basisName, const std::string &pupilName, int dim, int N )
30{
32
33 rawModes.resize( dim, dim, N );
34 zernikeBasis( rawModes );
35
36 std::string pupilFName = mx::AO::path::pupil::pupilFile( pupilName );
37 Eigen::Array<realT, -1, -1> pupil;
38
39 mx::improc::fitsFile<realT> ff;
40 ff.read( pupil, pupilFName );
41
42 realT psum = pupil.sum();
43 realT norm;
44
45 for( int i = 0; i < rawModes.planes(); ++i )
46 {
47 rawModes.image( i ) *= pupil;
48
49 norm = rawModes.image( i ).square().sum() / psum;
50
51 rawModes.image( i ) /= sqrt( norm );
52 }
53
54 // realT p2v;
55 // for(int i=0; i<N; ++i)
56 // {
57 // p2v = rawModes.image(i).maxCoeff() - rawModes.image(i).minCoeff();
58 // rawModes.image(i) /= p2v;
59 // }
60
61 std::string fName = mx::AO::path::basis::modes( basisName, true );
62
63 ff.write( fName, rawModes );
64}
65
66} // namespace AO
67
68} // namespace mx
69
70#endif //__fourierBasis_hpp__
An image cube with an Eigen-like API.
Definition eigenCube.hpp:30
Eigen::Map< Eigen::Array< dataT, Eigen::Dynamic, Eigen::Dynamic > > image(Index n)
Returns a 2D Eigen::Eigen::Map pointed at the specified image.
The mxlib c++ namespace.
Definition mxError.hpp:106
void makeZernikeBasis(const std::string &basisName, const std::string &pupilName, int dim, int N)
Make the Zernike basis.