1#ifndef directPhaseReconstructor_hpp
2#define directPhaseReconstructor_hpp
4#include "../../improc/eigenImage.hpp"
5#include "../../improc/eigenCube.hpp"
6#include "../../improc/fitsFile.hpp"
7using namespace mx::improc;
9#include "../../sigproc/signalWindows.hpp"
12#define BREAD_CRUMB std::cout << "DEBUG: " << __FILE__ << " " << __LINE__ << "\n";
24struct directPhaseReconstructorSpec
27 std::string basisName;
35template <
typename realT>
36class directPhaseReconstructor
43 typedef Eigen::Array<realT, -1, -1>
imageT;
46 typedef Eigen::Array<realT, -1, -1>
rmatT;
48 typedef directPhaseReconstructorSpec
specT;
51 Eigen::Array<realT, -1, -1>
_recon;
94 template <
typename AOSysT>
95 void initialize( AOSysT &AOSys,
specT &spec )
98 _modes = &AOSys.dm._infF;
106 _pupil = &AOSys._pupil;
111 template <
typename AOSysT>
112 void linkSystem( AOSysT &AOSys );
152 template <
typename measurementT,
typename wfsImageT>
156 template <
typename measurementT,
typename wfsImageT>
157 void reconstruct( measurementT &commandVect, wfsImageT &wfsImage );
173 template <
typename measurementT>
176 template <
typename measurementT,
typename wfsImageT>
177 void accumulateRMat(
int i, measurementT &measureVec, wfsImageT &wfsImage );
185 void saveRImages( std::string fname );
188template <
typename realT>
200template <
typename realT>
201template <
typename AOSysT>
202void directPhaseReconstructor<realT>::linkSystem( AOSysT &AOSys )
204 _modes = &AOSys.dm._modes;
206 _nModes = _modes->planes();
207 _detRows = _modes->rows();
208 _detCols = _modes->cols();
210 _measurementSize = _detRows * _detCols;
212 _pupil = &AOSys._pupil;
217template <
typename realT>
220 return 0.5 * 780.0e-9 / two_pi<realT>();
223template <
typename realT>
229template <
typename realT>
235template <
typename realT>
241template <
typename realT>
247template <
typename realT>
252template <
typename realT>
255 return _measurementSize;
258template <
typename realT>
259template <
typename measurementT,
typename wfsImageT>
264template <
typename realT>
265template <
typename measurementT,
typename wfsImageT>
273 _npix = _pupil->sum();
278 wfsImage.image *= _mask;
284#pragma omp parallel for
285 for(
int j = 0; j < _nModes; ++j )
287 b[j] = ( wfsImage.image * ortho.
image( j ) ).sum() / _npix;
293 for(
int j = 0; j < modes.planes(); ++j )
295 realT amp = b[0] * spectrum( 0, j );
297 for(
int i = 1; i < modes.planes(); ++i )
299 amp += b[i] * spectrum( i, j );
301 commandVect.measurement( 0, j ) = amp;
305 for(
int k = 0;
k < _nModes; ++
k )
307 std::cerr << commandVect.measurement( 0, k ) <<
" ";
311 commandVect.iterNo = wfsImage.iterNo;
314template <
typename realT>
322 _rMat.resize( measurementSize(), nModes );
325 _rImages.resize( _detRows, _detCols, _nModes );
328template <
typename realT>
329template <
typename measurementT>
333 for(
int j = 0; j < measureVec.measurement.rows(); ++j )
335 for(
int k = 0;
k < measureVec.measurement.cols(); ++
k )
337 _rMat( l, i ) = measureVec.measurement( j, k );
345template <
typename realT>
346template <
typename measurementT,
typename wfsImageT>
349 accumulateRMat( i, measureVec );
350 _rImages.
image( i ) = wfsImage.image;
353template <
typename realT>
359 head.append(
"DETROWS", _detRows,
"WFS detector rows" );
360 head.append(
"DETCOLS", _detCols,
"WFS detector cols" );
361 head.append(
"CALAMP", _calAmp,
"DM Calibration amplitude" );
362 head.append(
"NMODES", _nModes,
"Number of modes included in the response matrix." );
364 ff.write( fname, _rMat, head );
367template <
typename realT>
368void directPhaseReconstructor<realT>::saveRImages( std::string fname )
373 head.append(
"DETROWS", _detRows,
"WFS detector rows" );
374 head.append(
"DETCOLS", _detCols,
"WFS detector cols" );
375 head.append(
"CALAMP", _calAmp,
"DM Calibration amplitude" );
376 head.append(
"NMODES", _nModes,
"Number of modes included in the response matrix." );
379 ff.write( fname, _rImages, head );
399 for(
int i = 0; i < wfsImage.rows(); ++i)
401 for(
int j=0; j < wfsImage.cols(); ++j)
403 norm += pow((i - 0.5*(wfsImage.rows()-1.0))*(*_pupil)(i,j),2);
416 realT ampx = 0, ampy = 0;
418 for(
int i = 0; i < wfsImage.rows(); ++i)
420 for(
int j=0; j < wfsImage.cols(); ++j)
422 ampx += wfsImage(i,j) * (i - 0.5*(wfsImage.rows()-1.0))/norm;
423 ampy += wfsImage(i,j) * (j - 0.5*(wfsImage.cols()-1.0))/norm;
427 for(
int i = 0; i < wfsImage.rows(); ++i)
429 for(
int j=0; j < wfsImage.cols(); ++j)
431 wfsImage(i,j) -= ampx * (i - 0.5*(wfsImage.rows()-1.0))/norm * (*_pupil)(i,j);
432 wfsImage(i,j) -= ampy * (j - 0.5*(wfsImage.cols()-1.0))/norm * (*_pupil)(i,j);
void saveRMat(std::string fname)
Write the accumulated response matrix to disk.
int detRows()
Get the number of detector rows (_detRows)
void loadRecon(const std::string &fname)
Load the reconstrutor from the specified FITS file.
int _nModes
The number of modes to be reconstructed.
void detCols(int dc)
Set the number of detector columns (_detCols)
Eigen::Array< realT, -1, -1 > imageT
The type of the measurement (i.e. the slope vector)
realT _calAmp
The calibration amplitude used for response matrix acquisition.
int measurementSize()
Return the size of the unbinned measurement.
void calcMeasurement(measurementT &slopes, wfsImageT &wfsImage)
Calculate the slope measurement.
int _detRows
The size of the WFS image, in rows.
void initializeRMat(int nmodes, realT calamp, int detrows, int detcols)
Initialize the response matrix for acquisition.
realT calAmp()
Get the calibration amplitude used in response matrix acquisition (_calAmp)
directPhaseReconstructorSpec specT
The specificaion type.
void accumulateRMat(int i, measurementT &measureVec)
Accumalte the next measurement in the response matrix.
imageT _rMat
The response matrix.
void reconstruct(measurementT &commandVect, wfsImageT &wfsImage)
Reconstruct the wavefront from the input image, producing the modal amplitude vector.
int _measurementSize
The number of values in the measurement.
int _detCols
The size of the WFS image, in columns.
directPhaseReconstructor()
Default c'tor.
Eigen::Array< realT, -1, -1 > _recon
The reconstructor matrix.
Eigen::Array< realT, -1, -1 > rmatT
The type of the response matrix.
int detCols()
Get the number of detector columns (_detCols)
void calAmp(realT ca)
Set the calibration amplitude used in response matrix acquisition (_calAmp)
int nModes()
Get the number of modes (_nModes)
void detRows(int dr)
Set the number of detector rows (_detRows)
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 k()
Boltzmann Constant.
Eigen::Array< scalarT, -1, -1 > eigenImage
Definition of the eigenImage type, which is an alias for Eigen::Array.