11#include "../ioutils/fits/fitsFile.hpp"
12using namespace mx::fits;
14#include "../sigproc/fourierModes.hpp"
15#include "../sigproc/gramSchmidt.hpp"
17#include "../improc/imageFilters.hpp"
18#include "../improc/imagePads.hpp"
19#include "../improc/eigenCube.hpp"
21#include "../sigproc/signalWindows.hpp"
22using namespace mx::improc;
23using namespace mx::sigproc;
25#include "../math/eigenLapack.hpp"
26using namespace mx::math;
37template <
typename realT>
39 const std::string &basisName,
45 std::string
rawFName = mx::AO::path::basis::modes( basisName );
49 Eigen::Array<realT, -1, -1> pupil;
52 Eigen::Array<realT, -1, -1>
im,
pim,
fim;
54 for(
int i = 0;
i < modes.planes(); ++
i )
57 modes.image(
i ) = modes.image(
i ) * pupil;
61 im = modes.image(
i );
67 modes.image(
i ) +=
fim * ( pupil - 1 ).
abs();
81#define MXAO_ORTHO_METHOD_SGS 0
86#define MXAO_ORTHO_METHOD_SVD 1
88template <
typename realT,
typename spectRealT>
90 Eigen::Array<spectRealT, -1, -1> &
spect,
98 ortho.resize( modes.rows(), modes.cols(), modes.planes() );
99 Eigen::Map<Eigen::Array<realT, -1, -1>>
gsout( ortho.data(), ortho.rows() * ortho.cols(), ortho.planes() );
105 Eigen::Array<realT, -1, -1> U, S, VT, A;
107 A = modes.asVectors();
112 std::cerr <<
"Some error occurred in SVD\n";
120 ortho.resize( modes.rows(), modes.cols(), modes.planes() );
125 std::cerr <<
"Invalid orthogonalization method.\n";
142template <
typename realT>
144 const std::string &basisName,
155 Eigen::Array<realT, -1, -1>
spect;
159 modes.resize( 1, 1, 1 );
162 Eigen::Array<realT, -1, -1> pupil;
165 realT
psum = pupil.sum();
168 for(
int i = 0;
i < ortho.planes(); ++
i )
170 norm = ortho.
image(
i ).square().sum() /
psum;
183 std::string
orthm =
"UNK";
189 head.append(
"ORTHMETH",
orthm,
"Orthogonalization method." );
190 head.append(
"ORTHPUP",
pupilName,
"Pupil used for orthogonalization" );
201template <
typename spectRealT,
typename realT>
207 int nModes = modes.planes();
209 std::vector<realT> w( nModes );
211 size_t psum = pupil.sum();
215 std::vector<realT>
amps( nModes, 0.0 );
216 std::vector<realT>
uwAmps( nModes );
217 std::vector<realT>
rat(
psum );
220 for(
int k = 0; k < nModes; ++k )
224 for(
int j = 0;
j < nModes; ++
j )
228 for(
int i =
j;
i < nModes; ++
i )
237 for(
int i = 0;
i < nModes; ++
i )
241 for(
int r = 0; r < pupil.rows(); ++r )
243 for(
int c = 0;
c < pupil.cols(); ++
c )
245 if( pupil( r, c ) == 1 )
253 std::cout << w[
k] <<
"\n";
259 for(
int i = 0;
i < nModes; ++
i )
260 spectrum.row(
i ) /= w[
i];
265template <
typename realT>
268 const std::string &
pupilN,
269 const std::string &
dmN,
282 int dmSz =
inf.rows();
293 Eigen::Array<realT, -1, -1> pupil;
303 int cutw = 0.5 * ( dmSz - modes.rows() );
312 oModes.resize( modes.rows() + 2 *
cutw, modes.cols() + 2 *
cutw, modes.planes() );
314 if( modes.rows() > pupil.rows() )
324 im = modes.image(
i );
337 im = modes.image(
i ) * pupil;
370template <
typename realT>
385 realT
cen = 0.5 * ( modes.rows() - 1.0 );
387 Eigen::Array<realT, -1, -1> pupil;
388 pupil.resize( modes.rows(), modes.cols() );
396 window::tukey2dAnnulus<realT>(
402 modes.image(
i ) = modes.image(
i ) * pupil;
411template <
typename realT>
412int subtractBasis(
const std::string &basisName,
428 realT fwhm =
head[
"FWHM"].value<realT>();
434 Eigen::Array<realT, -1, -1> pupil;
437 for(
int i = 0;
i <
modes1.planes(); ++
i )
439 modes.image(
i ) =
modes1.image(
i ) * pupil;
442 for(
int i = 0;
i <
modes2.planes(); ++
i )
449 orthogonalizeBasis( ortho, modes,
method );
455 modes.resize( ortho.rows(), ortho.cols(),
modes2.planes() );
461 for(
int i = 0;
i <
modes2.planes(); ++
i )
463 modes.image(
i ) = ortho.
image(
modes1.planes() +
i ) * pupil;
467 im = modes.image(
i );
481 modes.image(
i ) =
im;
485 std::string
orthoFName = mx::AO::path::basis::modes( basisName,
true );
Standardized paths for the mx::AO system.
std::string U(const std::string &sysName, const std::string &dmName, const std::string &wfsName, const std::string &pupilName, const std::string &basisName, const std::string &id, bool create=false)
Path for the system response interaction matrix.
std::string pupilFile(const std::string &pupilName, bool create=false)
The path for the pupil FITS file.
std::string influenceFunctions(const std::string &dmName, bool create=false)
The path for the deformable mirror (DM) influence functions.
void applyPupil2Basis(eigenCube< realT > &modes, const std::string &basisName, const std::string &pupilName, realT fwhm=0)
Multiply a raw modal basis by a pupil mask.
Class to manage interactions with a FITS file.
An image cube with an Eigen-like API.
Eigen::Map< Eigen::Array< dataT, Eigen::Dynamic, Eigen::Dynamic > > image(Index n)
Returns a 2D Eigen::Eigen::Map pointed at the specified image.
constexpr units::realT c()
The speed of light.
constexpr units::realT k()
Boltzmann Constant.
Eigen::Array< scalarT, -1, -1 > eigenImage
Definition of the eigenImage type, which is an alias for Eigen::Array.
MXLAPACK_INT eigenGESDD(Eigen::Array< dataT, -1, -1 > &U, Eigen::Array< dataT, -1, -1 > &S, Eigen::Array< dataT, -1, -1 > &VT, Eigen::Array< dataT, -1, -1 > &A)
Compute the SVD of an Eigen::Array using LAPACK's xgesdd.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
void filterImage(imageOutT &fim, imageInT im, kernelT kernel, int maxr=0)
Filter an image with a mean kernel.
int padImage(imOutT &imOut, imInT &imIn, unsigned int padSz, typename imOutT::Scalar value)
Pad an image with a constant value.
int cutPaddedImage(imOutT &imOut, const imInT &imIn, unsigned int padSz)
Cut down a padded image.
vectorT::value_type vectorMedianInPlace(vectorT &vec)
Calculate median of a vector in-place, altering the vector.
Symetric Gaussian smoothing kernel.