mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
directPhaseReconstructorOrtho.hpp
1#ifndef directPhaseReconstructor_hpp
2#define directPhaseReconstructor_hpp
3
4#include "../../improc/eigenImage.hpp"
5#include "../../improc/eigenCube.hpp"
6#include "../../improc/fitsFile.hpp"
7using namespace mx::improc;
8
9#include "../../sigproc/signalWindows.hpp"
10
11#ifdef DEBUG
12#define BREAD_CRUMB std::cout << "DEBUG: " << __FILE__ << " " << __LINE__ << "\n";
13#else
14#define BREAD_CRUMB
15#endif
16
17namespace mx
18{
19namespace AO
20{
21namespace sim
22{
23
24struct directPhaseReconstructorSpec
25{
26 std::string dmName;
27 std::string basisName;
28
29 std::string rMatId;
30};
31
32/// A Pyramid Wavefront Sensor slope reconstructor.
33/** Calculates slopes, normalized by total flux in the image.
34 */
35template <typename realT>
36class directPhaseReconstructor
37{
38 public:
39 /// The type of the measurement (i.e. the slope vector)
40 // typedef Eigen::Array<realT,-1,-1> measurementT;
41
42 /// The type of the WFS image
43 typedef Eigen::Array<realT, -1, -1> imageT;
44
45 /// The type of the response matrix
46 typedef Eigen::Array<realT, -1, -1> rmatT;
47
48 typedef directPhaseReconstructorSpec specT;
49
50 protected:
51 Eigen::Array<realT, -1, -1> _recon; ///< The reconstructor matrix.
52
53 int _nModes; ///< The number of modes to be reconstructed
54
55 int _detRows; ///< The size of the WFS image, in rows
56 int _detCols; ///< The size of the WFS image, in columns
57
58 int _measurementSize; ///< The number of values in the measurement
59
60 realT _calAmp; ///< The calibration amplitude used for response matrix acquisition
61
62 imageT _rMat; ///< The response matrix
63
64 eigenCube<realT> _rImages;
65
66 // The mirror modes
68
69 imageT *_pupil;
70
71 realT norm;
72
73 public:
74 // The orthogonalized basis
76
77 // The orthogonal spectrum
79
80 std::vector<realT> b;
81
82 imageT _mask;
83
85
86 imageT *_gains;
87
88 int _npix;
89
90 public:
91 /// Default c'tor
93
94 template <typename AOSysT>
95 void initialize( AOSysT &AOSys, specT &spec )
96 {
97
98 _modes = &AOSys.dm._infF;
99
100 _nModes = _modes->planes();
101 _detRows = _modes->rows();
102 _detCols = _modes->cols();
103
105
106 _pupil = &AOSys._pupil;
107
108 _mask = *_pupil;
109 }
110
111 template <typename AOSysT>
112 void linkSystem( AOSysT &AOSys );
113
114 /// Get the calibration amplitude used in response matrix acquisition (_calAmp)
115 realT calAmp();
116
117 /// Set the calibration amplitude used in response matrix acquisition (_calAmp)
118 /**
119 * \param ca [in] the new calibration amplitude
120 */
121 void calAmp( realT ca );
122
123 /// Get the number of modes (_nModes)
124 int nModes();
125
126 /// Get the number of detector rows (_detRows)
127 int detRows();
128
129 /// Set the number of detector rows (_detRows)
130 void detRows( int dr );
131
132 /// Get the number of detector columns (_detCols)
133 int detCols();
134
135 /// Set the number of detector columns (_detCols)
136 void detCols( int dc );
137
138 /// Load the reconstrutor from the specified FITS file
139 /**
140 * \param fname is the name of the FITS file, including path
141 */
142 void loadRecon( const std::string &fname );
143
144 /// Return the size of the unbinned measurement
146
147 /// Calculate the slope measurement
148 /**
149 * \param slopes [out] a (_measurementSize X 2) array of slopes
150 * \param wfsImage [in] the WFS image from which to measure the slopes
151 */
152 template <typename measurementT, typename wfsImageT>
153 void calcMeasurement( measurementT &slopes, wfsImageT &wfsImage );
154
155 /// Reconstruct the wavefront from the input image, producing the modal amplitude vector
156 template <typename measurementT, typename wfsImageT>
157 void reconstruct( measurementT &commandVect, wfsImageT &wfsImage );
158
159 /// Initialize the response matrix for acquisition
160 /**
161 * \param nmodes the number of modes
162 * \param calamp the calibration amplitude
163 * \param detrows the number of detector rows
164 * \param detcols the number of detector columns
165 */
166 void initializeRMat( int nmodes, realT calamp, int detrows, int detcols );
167
168 /// Accumalte the next measurement in the response matrix
169 /**
170 * \param i the measurement index
171 * \param measureVec is the i-th measurement vector
172 */
173 template <typename measurementT>
174 void accumulateRMat( int i, measurementT &measureVec );
175
176 template <typename measurementT, typename wfsImageT>
177 void accumulateRMat( int i, measurementT &measureVec, wfsImageT &wfsImage );
178
179 /// Write the accumulated response matrix to disk
180 /**
181 * \param fname the name, including path, of the response matrix
182 */
183 void saveRMat( std::string fname );
184
185 void saveRImages( std::string fname );
186};
187
188template <typename realT>
190{
191 _nModes = 0;
192
193 norm = 0;
194
195 _gains = 0;
196
197 _npix = 0;
198}
199
200template <typename realT>
201template <typename AOSysT>
202void directPhaseReconstructor<realT>::linkSystem( AOSysT &AOSys )
203{
204 _modes = &AOSys.dm._modes;
205
206 _nModes = _modes->planes();
207 _detRows = _modes->rows();
208 _detCols = _modes->cols();
209
210 _measurementSize = _detRows * _detCols;
211
212 _pupil = &AOSys._pupil;
213
214 _mask = *_pupil;
215}
216
217template <typename realT>
219{
220 return 0.5 * 780.0e-9 / two_pi<realT>();
221}
222
223template <typename realT>
225{
226 return;
227}
228
229template <typename realT>
231{
232 return _nModes;
233}
234
235template <typename realT>
237{
238 return _detRows;
239}
240
241template <typename realT>
243{
244 return _detCols;
245}
246
247template <typename realT>
248void directPhaseReconstructor<realT>::loadRecon( const std::string &fname )
249{
250}
251
252template <typename realT>
254{
255 return _measurementSize;
256}
257
258template <typename realT>
259template <typename measurementT, typename wfsImageT>
260void directPhaseReconstructor<realT>::calcMeasurement( measurementT &slopes, wfsImageT &wfsImage )
261{
262}
263
264template <typename realT>
265template <typename measurementT, typename wfsImageT>
266void directPhaseReconstructor<realT>::reconstruct( measurementT &commandVect, wfsImageT &wfsImage )
267{
268
269 BREAD_CRUMB;
270
271 if( _npix == 0 )
272 {
273 _npix = _pupil->sum();
274 }
275
276 BREAD_CRUMB;
277
278 wfsImage.image *= _mask;
279
280 BREAD_CRUMB;
281
282 b.resize( _nModes );
283
284#pragma omp parallel for
285 for( int j = 0; j < _nModes; ++j )
286 {
287 b[j] = ( wfsImage.image * ortho.image( j ) ).sum() / _npix;
288 }
289
290 // commandVect.measurement.setZero();
291
292 // #pragma omp parallel for
293 for( int j = 0; j < modes.planes(); ++j )
294 {
295 realT amp = b[0] * spectrum( 0, j );
296
297 for( int i = 1; i < modes.planes(); ++i )
298 {
299 amp += b[i] * spectrum( i, j );
300 }
301 commandVect.measurement( 0, j ) = amp;
302 }
303
304 // std::cerr << "--- " << b[0] << " " << b[0]*spectrum(0,0) << " " << commandVect.measurement(0,0) << "\n";
305 for( int k = 0; k < _nModes; ++k )
306 {
307 std::cerr << commandVect.measurement( 0, k ) << " ";
308 }
309 std::cerr << "\n";
310
311 commandVect.iterNo = wfsImage.iterNo;
312}
313
314template <typename realT>
315void directPhaseReconstructor<realT>::initializeRMat( int nModes, realT calamp, int detRows, int detCols )
316{
317 _nModes = nModes;
318
319 _detRows = detRows;
320 _detCols = detCols;
321
322 _rMat.resize( measurementSize(), nModes );
323 _rMat.setZero();
324
325 _rImages.resize( _detRows, _detCols, _nModes );
326}
327
328template <typename realT>
329template <typename measurementT>
330void directPhaseReconstructor<realT>::accumulateRMat( int i, measurementT &measureVec )
331{
332 int l = 0;
333 for( int j = 0; j < measureVec.measurement.rows(); ++j )
334 {
335 for( int k = 0; k < measureVec.measurement.cols(); ++k )
336 {
337 _rMat( l, i ) = measureVec.measurement( j, k );
338 ++l;
339 }
340 }
341
342 //_rMat.col(i) = measureVec.measurement.row(0);
343}
344
345template <typename realT>
346template <typename measurementT, typename wfsImageT>
347void directPhaseReconstructor<realT>::accumulateRMat( int i, measurementT &measureVec, wfsImageT &wfsImage )
348{
349 accumulateRMat( i, measureVec );
350 _rImages.image( i ) = wfsImage.image;
351}
352
353template <typename realT>
354void directPhaseReconstructor<realT>::saveRMat( std::string fname )
355{
356 fitsFile<realT> ff;
357 fitsHeader head;
358
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." );
363
364 ff.write( fname, _rMat, head );
365}
366
367template <typename realT>
368void directPhaseReconstructor<realT>::saveRImages( std::string fname )
369{
370 fitsFile<realT> ff;
371 fitsHeader head;
372
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." );
377
378 // ff.write(fname, _rImages.data(), _rImages.rows(), _rImages.cols(), _rImages.planes(), &head);
379 ff.write( fname, _rImages, head );
380}
381
382} // namespace sim
383} // namespace AO
384} // namespace mx
385
386#endif // directPhaseReconstructor_hpp
387
388//--- Code for mean and tip/tilt subtraction in reconstruct:
389// realT mean = (wfsImage.image * *_pupil).sum()/npix;
390//
391// wfsImage.image -= mean;
392// wfsImage.image *= *_pupil;
393
394#if 0
395
396 BREAD_CRUMB;
397 if(norm == 0)
398 {
399 for(int i = 0; i < wfsImage.rows(); ++i)
400 {
401 for(int j=0; j < wfsImage.cols(); ++j)
402 {
403 norm += pow((i - 0.5*(wfsImage.rows()-1.0))*(*_pupil)(i,j),2);
404 }
405 }
406 BREAD_CRUMB;
407 norm = sqrt(norm);
408
409 //std::cout << "NORM: === " << norm << "\n";
410 }
411 BREAD_CRUMB;
412
413 //std::cout << "NORM: === " << norm << "\n";
414
415 //Remove tip/tilt:
416 realT ampx = 0, ampy = 0;
417 BREAD_CRUMB;
418 for(int i = 0; i < wfsImage.rows(); ++i)
419 {
420 for(int j=0; j < wfsImage.cols(); ++j)
421 {
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;
424 }
425 }
426 BREAD_CRUMB;
427 for(int i = 0; i < wfsImage.rows(); ++i)
428 {
429 for(int j=0; j < wfsImage.cols(); ++j)
430 {
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);
433 }
434 }
435#endif
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.
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.
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.
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.
constexpr units::realT k()
Boltzmann Constant.
Definition constants.hpp:69
Eigen::Array< scalarT, -1, -1 > eigenImage
Definition of the eigenImage type, which is an alias for Eigen::Array.
The mxlib c++ namespace.
Definition mxError.hpp:106