1#ifndef directPhaseReconstructor_hpp
2#define directPhaseReconstructor_hpp
4#pragma GCC system_header
7#include <mx/signalWindows.hpp>
10#define BREAD_CRUMB std::cout << "DEBUG: " << __FILE__ << " " << __LINE__ << "\n";
24struct slopeReconstructorSpec
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 slopeReconstructorSpec
specT;
64 mx::eigenCube<realT> *_modes{
nullptr };
75 mx::eigenImaged _spectrum;
83 template <
typename AOSysT>
84 void initialize( AOSysT &AOSys,
specT &spec )
87 _modes = &AOSys.dm._infF;
95 _pupil = &AOSys._pupil;
98 _mask.resize( _pupil->rows(), _pupil->cols() );
105 mx::fitsFile<realT> ff;
106 ff.write(
"dprMask.fits", _mask );
108 std::string recMatrix = mx::AO::path::sys::cal::iMat(
109 AOSys._sysName, spec.dmName, AOSys._wfsName, AOSys._pupilName, spec.basisName, spec.rMatId );
113 template <
typename AOSysT>
114 void linkSystem( AOSysT &AOSys );
154 template <
typename measurementT,
typename wfsImageT>
158 template <
typename measurementT,
typename wfsImageT>
159 void reconstruct( measurementT &commandVect, wfsImageT &wfsImage );
175 template <
typename measurementT>
178 template <
typename measurementT,
typename wfsImageT>
179 void accumulateRMat(
int i, measurementT &measureVec, wfsImageT &wfsImage );
187 void saveRImages( std::string fname );
190template <
typename realT>
195template <
typename realT>
196template <
typename AOSysT>
197void directPhaseReconstructor<realT>::linkSystem( AOSysT &AOSys )
199 _modes = &AOSys.dm._modes;
201 _nModes = _modes->planes();
202 _detRows = _modes->rows();
203 _detCols = _modes->cols();
205 _measurementSize = _detRows * _detCols;
207 _pupil = &AOSys._pupil;
208 _measurementSize = _pupil->sum();
210 _mask.resize( _pupil->rows(), _pupil->cols() );
212 _mask.data(), _mask.rows(), (realT)_mask.rows(), 0.0, 0.5 * ( _mask.rows() - 1 ), 0.5 * ( _mask.cols() - 1 ) );
214 mx::fitsFile<realT> ff;
215 ff.write(
"dprMask.fits", _mask );
218template <
typename realT>
221 return 0.5 * 780.0e-9 / two_pi<realT>();
224template <
typename realT>
230template <
typename realT>
236template <
typename realT>
242template <
typename realT>
248template <
typename realT>
251 mx::fitsFile<realT> ff;
254 ff.read( fname, _recon, head );
257template <
typename realT>
260 return _measurementSize;
263template <
typename realT>
264template <
typename measurementT,
typename wfsImageT>
268 slopes.measurement.resize( 1, _measurementSize );
272 for(
int i = 0; i < wfsImage.image.rows(); ++i )
274 for(
int j = 0; j < wfsImage.image.cols(); ++j )
276 if( ( *_pupil )( i, j ) == 0 )
279 slopes.measurement( 0, k ) = wfsImage.image( i, j );
285template <
typename realT>
286template <
typename measurementT,
typename wfsImageT>
294 calcMeasurement( slopes, wfsImage );
297 commandVect.measurement = slopes.measurement.matrix() * _recon.matrix();
300 commandVect.iterNo = wfsImage.iterNo;
303template <
typename realT>
311 _rMat.resize( measurementSize(), nModes );
314 _rImages.resize( _detRows, _detCols, _nModes );
317template <
typename realT>
318template <
typename measurementT>
321 _rMat.col( i ) = measureVec.measurement.row( 0 );
324template <
typename realT>
325template <
typename measurementT,
typename wfsImageT>
329 accumulateRMat( i, measureVec );
333 _rImages.image( i ) = wfsImage.image;
336template <
typename realT>
339 mx::fitsFile<realT> ff;
342 ff.write( fname, _rMat );
345template <
typename realT>
346void directPhaseReconstructor<realT>::saveRImages( std::string fname )
348 mx::fitsFile<realT> ff;
350 ff.write( fname, _rImages );
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)
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.