mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
ccdDetector.hpp
Go to the documentation of this file.
1/** \file ccdDetector.hpp
2 * \author Jared R. Males (jaredmales@gmail.com)
3 * \brief Provides a class to simulate a CCD.
4 * \ingroup mxAO_files
5 *
6 */
7
8#ifndef ccdDetector_hpp
9#define ccdDetector_hpp
10
11// #include <Eigen/Dense>
12
13#include "../../improc/imageTransforms.hpp"
14#include "../../math/randomT.hpp"
15
16#include "wavefront.hpp"
17
18#include <fcntl.h>
19#include <iostream>
20
21namespace mx
22{
23namespace AO
24{
25namespace sim
26{
27
28/// A simulated CCD detector
29/** A simulated CCD detector, including an optional EMCCD noise model.
30 *
31 * \ingroup mxAOSim
32 */
33template <typename _realT>
35{
36
37 public:
38 typedef _realT realT;
39
41
42 typedef Eigen::Array<realT, Eigen::Dynamic, Eigen::Dynamic> imageT;
43
45
47
49
51
52 protected:
53 norm_distT m_normVar; ///< Gets normal-distributed variates
54 poisson_distT m_poissonVar; ///< Gets Poisson distributed variates
55 gamma_distT m_gammaVar; ///< Gets gamma distributed variates
56
57 realT m_qe{ 1 }; ///< The quantum efficiency.
58
59 realT m_darkCurrent{ 0 }; ///< The dark current, per pixel per second
60 realT m_ron{ 0 }; ///< The readout noise, electrons per pixel per read #include "mx/randomT.hpp"
61
62 realT m_cic{ 0 }; ///< EMCCD clock induced charge, electrons per pixel per read.
63 realT m_gain{ 1 }; ///< Electron multiplication gain. If >1, then EMCCD is modeled.
64
65 realT m_expTime{ 1 }; ///< The exposure time, in seconds.
66
67 int m_rows{ 0 }; ///< The detector size, in rows.
68 int m_cols{ 0 }; ///< The detector size, in columns.
69
70 bool m_noNoise{ false }; ///< If true no noise is added to the exposed image.
71
72 // This is probably vestigial, commented out on 2018-07-23
73 // Delete after testing with an aoSim compile.
74 // long get_seed();
75
76 public:
77 /// Get the current value of qe.
78 /**
79 * \returns the current value of m_qe
80 */
81 realT qe();
82
83 void qe( const realT &q );
84
85 realT darkCurrent();
86
87 void darkCurrent( const realT &dc );
88
89 realT ron();
90
91 void ron( const realT &r );
92
93 realT cic();
94
95 void cic( const realT &c );
96
97 realT gain();
98
99 void gain( const realT &g );
100
101 realT expTime();
102
103 void expTime( const realT &dt );
104
105 int rows();
106
107 void rows( const int &r );
108
109 int cols();
110
111 void cols( const int &c );
112
113 void setSize( const int &r, const int &c );
114
115 bool noNoise();
116
117 void noNoise( bool nn );
118
119 /// Rebin and add noise to the input image, placing the result in the output image.
120 /** The output image must be the same size or smaller than the input image.
121 * The output image is resized only if necessary.
122 * The input image is multiplied by expTime, so its flux should be in photons/sec.
123 * Noise is modeled as follows:
124 * -# The number of input photons for pixel (i,j) is \f$ n_{ie} = (in(i,j) + darkCurrent)*expTime + cic \f$
125 * -# The Poisson distribution with mean and variance \f$ n_{ie} \f$ is sampled.
126 * -# If gain > 1, the gamma distribution is sampled
127 * -# Read noise is applied
128 * -# Result is rounded to nearest whole integer.
129 */
130 void exposeImage( imageT &out, ///< [out] The output image, after all above steps applied.
131 imageT &in ///< [in] the input image, in photons/sec flux units.
132 );
133};
134
135template <typename realT>
136ccdDetector<realT>::ccdDetector()
137{
138 m_normVar.seed();
139 m_poissonVar.seed();
140 m_gammaVar.seed();
141}
142
143/*template<typename realT>
144long ccdDetector<realT>::get_seed()
145{
146 long int seedval;
147
148 int fd;
149
150 fd = open("/dev/urandom", O_RDONLY);
151
152 int rv =read(fd, &seedval, sizeof(long int));
153
154 close(fd);
155
156
157 if(rv < 0)
158 {
159 std::cerr << "read from /dev/urandom returned error\n";
160
161 return 0;
162 }
163
164 return seedval;
165}
166*/
167
168template <typename realT>
170{
171 return m_qe;
172}
173
174template <typename realT>
175void ccdDetector<realT>::qe( const realT &q )
176{
177 m_qe = q;
178}
179
180template <typename realT>
181realT ccdDetector<realT>::darkCurrent()
182{
183 return m_darkCurrent;
184}
185
186template <typename realT>
187void ccdDetector<realT>::darkCurrent( const realT &dc )
188{
189 m_darkCurrent = dc;
190}
191
192template <typename realT>
193realT ccdDetector<realT>::ron()
194{
195 return m_ron;
196}
197
198template <typename realT>
199void ccdDetector<realT>::ron( const realT &r )
200{
201 m_ron = r;
202}
203
204template <typename realT>
205realT ccdDetector<realT>::cic()
206{
207 return m_cic;
208}
209
210template <typename realT>
211void ccdDetector<realT>::cic( const realT &c )
212{
213 m_cic = c;
214}
215
216template <typename realT>
217realT ccdDetector<realT>::gain()
218{
219 return m_gain;
220}
221
222template <typename realT>
223void ccdDetector<realT>::gain( const realT &g )
224{
225 m_gain = g;
226}
227
228template <typename realT>
229realT ccdDetector<realT>::expTime()
230{
231 return m_expTime;
232}
233
234template <typename realT>
235void ccdDetector<realT>::expTime( const realT &dt )
236{
237 m_expTime = dt;
238}
239
240template <typename realT>
241int ccdDetector<realT>::rows()
242{
243 return m_rows;
244}
245
246template <typename realT>
247void ccdDetector<realT>::rows( const int &r )
248{
249 m_rows = r;
250}
251
252template <typename realT>
253int ccdDetector<realT>::cols()
254{
255 return m_cols;
256}
257
258template <typename realT>
259void ccdDetector<realT>::cols( const int &c )
260{
261 m_cols = c;
262}
263
264template <typename realT>
265void ccdDetector<realT>::setSize( const int &r, const int &c )
266{
267 m_rows = r;
268 m_cols = c;
269}
270
271template <typename realT>
272bool ccdDetector<realT>::noNoise()
273{
274 return m_noNoise;
275}
276
277template <typename realT>
278void ccdDetector<realT>::noNoise( bool nn )
279{
280 m_noNoise = nn;
281}
282
283template <typename realT>
284void ccdDetector<realT>::exposeImage( imageT &out, imageT &in )
285{
286
287 using poisson_param_t = typename std::poisson_distribution<int>::param_type;
288 using gamma_param_t = typename std::gamma_distribution<realT>::param_type;
289
290 BREAD_CRUMB
291
292 out.resize( m_rows, m_cols );
293
294 BREAD_CRUMB
295
296 improc::imageDownSample( out, in );
297
298 BREAD_CRUMB
299
300 if( m_noNoise )
301 return;
302
303 for( int j = 0; j < m_cols; ++j )
304 {
305 for( int i = 0; i < m_rows; ++i )
306 {
307 realT charge = ( out( i, j ) * m_qe + m_darkCurrent ) * m_expTime + m_cic;
308
309 if( charge > 1000 )
310 {
311 out( i, j ) = charge + m_normVar * sqrt( charge );
312 }
313 else
314 {
315 m_poissonVar.distribution.param( poisson_param_t{ charge } );
316 out( i, j ) = m_poissonVar;
317 }
318
319 if( m_gain > 1 )
320 {
321 m_gammaVar.distribution.param( gamma_param_t{ out( i, j ), m_gain } );
322
323 out( i, j ) = m_gammaVar;
324 }
325
326 if( m_ron > 0 )
327 {
328 out( i, j ) += m_normVar * m_ron;
329 }
330
331 if( m_gain > 1 )
332 {
333 out( i, j ) /= m_gain;
334 }
335
336 // out(i,j) = round(out(i,j));
337 }
338 }
339}
340
341} // namespace sim
342} // namespace AO
343} // namespace mx
344
345#endif // ccdDetector_hpp
A simulated CCD detector.
realT m_ron
The readout noise, electrons per pixel per read #include "mx/randomT.hpp".
realT m_darkCurrent
The dark current, per pixel per second.
realT m_qe
The quantum efficiency.
realT qe()
Get the current value of qe.
realT m_cic
EMCCD clock induced charge, electrons per pixel per read.
int m_cols
The detector size, in columns.
realT m_expTime
The exposure time, in seconds.
norm_distT m_normVar
Gets normal-distributed variates.
gamma_distT m_gammaVar
Gets gamma distributed variates.
int m_rows
The detector size, in rows.
poisson_distT m_poissonVar
Gets Poisson distributed variates.
bool m_noNoise
If true no noise is added to the exposed image.
void exposeImage(imageT &out, imageT &in)
Rebin and add noise to the input image, placing the result in the output image.
realT m_gain
Electron multiplication gain. If >1, then EMCCD is modeled.
A random number type, which functions like any other arithmetic type.
Definition randomT.hpp:64
constexpr units::realT c()
The speed of light.
Definition constants.hpp:58
void imageDownSample(imageOutT &imout, const imageInT &imin)
Down-sample an image, reducing its size while conserving the total flux.
The mxlib c++ namespace.
Definition mxError.hpp:106
Structure containing the phase and amplitude of a wavefront.
Definition wavefront.hpp:24