mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
ADIobservation.hpp
Go to the documentation of this file.
1/** \file ADIobservation.hpp
2 * \author Jared R. Males
3 * \brief Defines the ADI high contrast imaging data type.
4 * \ingroup hc_imaging_files
5 * \ingroup image_processing_files
6 *
7 */
8
9#ifndef __ADIobservation_hpp__
10#define __ADIobservation_hpp__
11#include "../ioutils/fileUtils.hpp"
12
13#include "HCIobservation.hpp"
14#include "../ioutils/fits/fitsHeader.hpp"
15
16#include "imagePads.hpp"
17
18namespace mx
19{
20namespace improc
21{
22namespace HCI
23{
24/// Fake injection PSF file specification methods
25/** \ingroup hc_imaging_enums
26 */
28{
29 single, ///< A single PSF is used
30 list ///< A list of PSF files, one per input image, is used.
31};
32
33/// Get the string name of a fake injection method
34/**
35 * \returns the string name corresponding to the fake injection method
36 */
37std::string fakeMethodsStr( int method /**< [in] the fake injection method */ );
38
39/// Get the fake injection method from its string name
40/**
41 * \returns the corresponding member of the fakeMethods enum
42 */
43int fakeMethodFmStr( const std::string &method /**< [in] the fake injection method name*/ );
44
45} // namespace HCI
46
47/// Process an angular differential imaging (ADI) observation
48/** Angular differential imaging (ADI) uses sky rotation to differentiate real objects from
49 * speckles.
50 *
51 * \tparam realT is the floating point type in which to do calculations
52 *
53 * \tparam _derotFunctObj
54 * \parblock
55 * is the derotation object with the following minimum interface:
56 * \code
57 * template<typename _realT>
58 * struct derotF
59 * {
60 * typedef _realT realT;
61 *
62 * //Vector of keywords to extract from the fits headers
63 * std::vector<std::string> keywords;
64 *
65 * //Vector(s) to hold the keyword values
66 * std::vector<realT> keyValue1;
67 *
68 * ///To allow ADIobservation to check for errors.
69 * bool isSetup()
70 * {
71 * if( <any condition indicating not set up>) return false;
72 * return true;
73 * }
74 *
75 * //Method called by HCIobservation to get keyword-values
76 * void extractKeywords(vector<fitsHeader> & heads)
77 * {
78 * keyValue1 = headersToValues<float>(heads, "KEYWORD1");
79 * }
80 *
81 * //Calculate the derotation angle for a given image number
82 * realT derotAngle(size_t imno) const
83 * {
84 * return some_function_of(keyValue1[imno]); //This function uses keyValue1[imno] to produce the derotation angle
85 * in radians.
86 * }
87 * };
88 * \endcode
89 * \endparblock
90 *
91 * \ingroup hc_imaging
92 */
93template <typename _realT, class _derotFunctObj>
94struct ADIobservation : public HCIobservation<_realT>
95{
96 typedef _realT realT;
97 typedef _derotFunctObj derotFunctObj;
98 typedef Eigen::Array<realT, Eigen::Dynamic, Eigen::Dynamic> eigenImageT;
99
100 derotFunctObj m_derotF;
101
102 derotFunctObj m_RDIderotF;
103
104 bool m_doDerotate{ true };
105
106 bool m_postMedSub{ false };
107
109
110 ADIobservation( const std::string &dir, ///< [in] the directory to search.
111 const std::string &prefix, ///< [in] the initial part of the file name. Can be empty "".
112 const std::string &ext ///< [in] the extension to append to the file name, must include the '.'.
113 );
114
115 explicit ADIobservation( const std::string &fileListFile /**< [in] a file name path to read.*/ );
116
118 const std::string &dir, ///< [in] the directory to search.
119 const std::string &prefix, ///< [in] the initial part of the file name. Can be empty "".
120 const std::string &ext, ///< [in] the extension to append to the file name, must include the '.'.
121 const std::string &RDIdir, ///< [in] the directory to search for the reference files.
122 const std::string
123 &RDIprefix, ///< [in] the initial part of the file name for the reference files. Can be empty "".
124 const std::string &RDIext = "" ///< [in] [optional] the extension to append to the RDI file name, must include
125 ///< the '.'. If empty "" then same extension as target files is used.
126 );
127
128 ADIobservation( const std::string &fileListFile, ///< [in] a file name path to read for the target file names.
129 const std::string &RDIfileListFile ///< [in] a file name path to read for the reference file names.
130 );
131
132 /// Read in the target files
133 /** First sets up the keywords, then calls HCIobservation readFiles
134 */
135 int readFiles();
136
137 /// Actions to take after the files are first read in by HCIobservation
138 /** Exracts the angle keywords from the FITS headers, and checks that a valid value is found for each file.
139 * Performs fake planet injectio if configured.
140 *
141 * \throws
142 * \returns -1 if an error occurs.
143 */
144 virtual int postReadFiles();
145
146 /// Post target coadd actions.
147 /** Here updates derotation for new average values.
148 */
149 virtual int postCoadd();
150
151 /// Read in the RDI files
152 /** First sets up the keywords, then calls HCIobservation readRDIFiles
153 */
154 int readRDIFiles();
155
156 /// Post reference read actions, including fake injection
157 virtual int postRDIReadFiles();
158
159 /// Post reference coadd actions.
160 /** Here updates derotation for new average values.
161 */
162 virtual int postRDICoadd();
163
164 /// Read in already PSF-subtracted files
165 /** Used to take up final processing after applying some non-klipReduce processing steps to
166 * PSF-subtracted images.
167 */
168 int readPSFSub( const std::string &dir, const std::string &prefix, const std::string &ext, size_t nReductions );
169
170 /** \name Fake Planets
171 * @{
172 */
173 int m_fakeMethod{ HCI::single }; ///< Method for reading fake files, either HCI::single or HCI::list.
174
175 std::string m_fakeFileName; ///< FITS file containing the fake planet PSF to inject or a list of fake images
176
177 std::string m_fakeScaleFileName; ///< One-column text file containing a scale factor for each point in time.
178
179 std::vector<realT> m_fakeSep; ///< Separation(s) of the fake planet(s)
180 std::vector<realT> m_fakePA; ///< Position angles(s) of the fake planet(s)
181 std::vector<realT> m_fakeContrast; ///< Contrast(s) of the fake planet(s)
182
183 realT m_RDIFluxScale{ 1 }; /**< Flux scaling to apply to fake planets injected in RDI.
184 Would depend on the assumed spectrum in SDI.*/
185 realT m_RDISepScale{ 1 }; /**< Scaling to apply to fake planet separation in RDI.
186 Would be ratio of wavelengths for SDI.*/
187
188 /// Inkect the fake plants
189 /**
190 * \todo should pad the fake before calling the single image version
191 * \todo throw exceptions for all errors, and switch to void
192 */
193 int injectFake( eigenCube<realT> &ims, ///< [in.out] the image cube in which to inject the fakes.
194 std::vector<std::string> &fileList, ///< [in] a list of file paths used for per-image fake PSFs. If
195 ///< empty, then m_fakeFileName is used.
196 derotFunctObj &derotF,
197 realT RDIfluxScale, ///< [in] the flux scaling for RDI. In SDI, this is from the planet spectrum.
198 realT RDISepScale ///< [in] the separation scale for RDI. In SDI, this is the ratio of wavlengths
199 ///< after lambda/D scaling.
200 );
201
202 /// Inject the fake planet into a single image
203 /**
204 * \todo should pad the fake before this point
205 * \todo throw exceptions for all errors, and switch to void
206 */
207 int injectFake( eigenImageT &fakePSF,
208 eigenCube<realT> &ims,
209 int image_i,
210 realT derotAngle,
211 realT PA,
212 realT sep,
213 realT contrast,
214 realT scale,
215 realT RDIfluxScale,
216 realT RDISepScale );
217
218 /// @}
219
220 void stdFitsHeader( fits::fitsHeader *head );
221
222 virtual void makeMaskCube();
223
224 /// De-rotate the PSF subtracted images
225 void derotate();
226
227 double t_fake_begin{ 0 };
228 double t_fake_end{ 0 };
229
230 double t_derotate_begin{ 0 };
231 double t_derotate_end{ 0 };
232};
233
234template <typename _realT, class _derotFunctObj>
235ADIobservation<_realT, _derotFunctObj>::ADIobservation()
236{
237}
238
239template <typename _realT, class _derotFunctObj>
241 const std::string &prefix,
242 const std::string &ext )
243 : HCIobservation<realT>( dir, prefix, ext )
244{
245}
246
247template <typename _realT, class _derotFunctObj>
249 : HCIobservation<realT>( fileListFile )
250{
251}
252
253template <typename _realT, class _derotFunctObj>
255 const std::string &prefix,
256 const std::string &ext,
257 const std::string &RDIdir,
258 const std::string &RDIprefix,
259 const std::string &RDIext )
260 : HCIobservation<realT>( dir, prefix, ext, RDIdir, RDIprefix, RDIext )
261{
262}
263
264template <typename _realT, class _derotFunctObj>
266 const std::string &RDIfileListFile )
267 : HCIobservation<realT>( fileListFile, RDIfileListFile )
268{
269}
270
271template <typename _realT, class _derotFunctObj>
273{
274 this->m_keywords.clear();
275
276 if( !m_derotF.isSetup() )
277 {
278 mxError( "ADIobservation::readFiles", MXE_PARAMNOTSET, "Derotator is not configured." );
279 return -1;
280 }
281
282 /*----- Append the ADI keywords to propagate them if needed -----*/
283
284 for( size_t i = 0; i < m_derotF.m_keywords.size(); ++i )
285 {
286 this->m_keywords.push_back( m_derotF.m_keywords[i] );
287 }
288
290 {
291 return -1;
292 }
293
294 return 0;
295}
296
297template <typename _realT, class _derotFunctObj>
299{
300 std::optional<std::vector<size_t>> bad = m_derotF.extractKeywords( this->m_heads );
301
302 if( bad )
303 {
304 for( size_t n = 0; n < bad->size(); ++n )
305 {
306 std::cerr << this->m_fileList[( *bad )[n]] << " conversion failed for " << m_derotF.m_angleKeyword << "\n";
307 }
308
309 mxThrowException( mx::err::invalidarg,
310 "ADIobservation::postReadFiles",
311 "bad derotation angles in FITS header" );
312 }
313
314 if( m_fakeFileName != "" && !this->m_skipPreProcess )
315 {
316 std::cerr << "Injecting fakes in target images...\n";
317 if( injectFake( this->m_tgtIms, this->m_fileList, m_derotF, 1, 1 ) < 0 )
318 {
319 return -1;
320 }
321 }
322
323 return 0;
324}
325
326template <typename _realT, class _derotFunctObj>
328{
329 m_derotF.extractKeywords( this->m_heads );
330 return 0;
331}
332
333template <typename _realT, class _derotFunctObj>
335{
336 this->m_RDIkeywords.clear();
337
338 if( !m_RDIderotF.isSetup() )
339 {
340 mxError( "ADIobservation::readRDIFiles", MXE_PARAMNOTSET, "Derotator is not configured." );
341 return -1;
342 }
343
344 /*----- Append the ADI keywords to propagate them if needed -----*/
345
346 for( size_t i = 0; i < m_RDIderotF.m_keywords.size(); ++i )
347 {
348 this->m_RDIkeywords.push_back( m_RDIderotF.m_keywords[i] );
349 }
350
352 return -1;
353
354 return 0;
355}
356
357template <typename _realT, class _derotFunctObj>
359{
360 m_RDIderotF.extractKeywords( this->m_RDIheads );
361
362 /*if(m_fakeFileName != "" && !this->m_skipPreProcess)
363 {
364 if( injectFake(this->m_refIms, this->m_RDIfileList, m_RDIderotF, m_RDIFluxScale, m_RDISepScale) < 0) return -1;
365 }*/
366
367 return 0;
368}
369
370template <typename _realT, class _derotFunctObj>
372{
373 m_RDIderotF.extractKeywords( this->m_RDIheads );
374 return 0;
375}
376
377template <typename _realT, class _derotFunctObj>
379 const std::string &prefix,
380 const std::string &ext,
381 size_t nReductions )
382{
383 // Load first file to condigure based on its header.
384 std::vector<std::string> flist = ioutils::getFileNames( dir, prefix, "000", ext );
385
389
390 ff.read( im, fh, flist[0] );
391
392 if( !m_derotF.isSetup() )
393 {
394 mxError( "ADIobservation::readFiles", MXE_PARAMNOTSET, "Derotator is not configured." );
395 return -1;
396 }
397
398 if( fh.count( "POSTMEDS" ) != 0 )
399 {
400 m_postMedSub = fh["POSTMEDS"].Int();
401 std::cerr << "postMedSub: " << m_postMedSub << "\n";
402 }
403
404 if( fh.count( "FAKEFILE" ) != 0 )
405 {
406 m_fakeFileName = fh["FAKEFILE"].String();
407 std::cerr << "fakeFileName: " << m_fakeFileName << "\n";
408 }
409
410 if( fh.count( "FAKESCFL" ) != 0 )
411 {
412 m_fakeScaleFileName = fh["FAKESCFL"].String();
413 std::cerr << "fakeScaleFileName: " << m_fakeScaleFileName << "\n";
414 }
415
416 if( fh.count( "FAKESEP" ) != 0 )
417 {
418 ioutils::parseStringVector( m_fakeSep, fh["FAKESEP"].String(), "," );
419
420 if( m_fakeSep.size() == 0 )
421 {
422 mxError( "KLIPReduction", MXE_PARSEERR, "FAKESEP vector did not parse correctly." );
423 return -1;
424 }
425 std::cerr << "fakeSep: " << fh["FAKESEP"].String() << "\n";
426 }
427
428 if( fh.count( "FAKEPA" ) != 0 )
429 {
430 ioutils::parseStringVector( m_fakePA, fh["FAKEPA"].String(), "," );
431
432 if( m_fakePA.size() == 0 )
433 {
434 mxError( "KLIPReduction", MXE_PARSEERR, "FAKEPA vector did not parse correctly." );
435 return -1;
436 }
437 std::cerr << "fakePA: " << fh["FAKEPA"].String() << "\n";
438 }
439
440 if( fh.count( "FAKECONT" ) != 0 )
441 {
442 ioutils::parseStringVector( m_fakeContrast, fh["FAKECONT"].String(), "," );
443
444 if( m_fakeContrast.size() == 0 )
445 {
446 mxError( "KLIPReduction", MXE_PARSEERR, "FAKECONT vector did not parse correctly." );
447 return -1;
448 }
449 std::cerr << "fakeContrast: " << fh["FAKECONT"].String() << "\n";
450 }
451
452 /*----- Append the ADI keywords to propagate them if needed -----*/
453
454 for( size_t i = 0; i < m_derotF.m_keywords.size(); ++i )
455 {
456 this->m_keywords.push_back( m_derotF.m_keywords[i] );
457 }
458
459 if( HCIobservation<realT>::readPSFSub( dir, prefix, ext, nReductions ) < 0 )
460 return -1;
461
462 m_derotF.extractKeywords( this->m_heads );
463
464 return 0;
465}
466
467template <typename _realT, class _derotFunctObj>
469 std::vector<std::string> &fileList,
470 derotFunctObj &derotF,
471 realT RDIFluxScale,
472 realT RDISepScale )
473{
474 t_fake_begin = sys::get_curr_time();
475
476 // typedef Eigen::Array<realT, Eigen::Dynamic, Eigen::Dynamic> imT;
477 eigenImageT fakePSF;
478 std::vector<std::string> fakeFiles; // used if m_fakeMethod == HCI::list
479
481 std::ifstream scaleFin; // for reading the scale file.
482
483 // Fake Scale -- default to 1, read from file otherwise
484 std::vector<realT> fakeScale( ims.planes(), 1.0 );
485 if( m_fakeScaleFileName != "" )
486 {
487 std::vector<std::string> sfileNames;
488 std::vector<realT> imS;
489
490 // Read the scale file and load it into a map
491 if( ioutils::readColumns( m_fakeScaleFileName, sfileNames, imS ) < 0 )
492 return -1;
493
494 if( sfileNames.size() != imS.size() )
495 {
496 std::cerr << "fake scale file must be two columns of: fileName scale\n";
497 exit( -1 );
498 }
499 std::map<std::string, realT> scales;
500 for( size_t i = 0; i < sfileNames.size(); ++i )
501 scales[ioutils::pathFilename( sfileNames[i].c_str() )] = imS[i];
502
503 for( size_t i = 0; i < fileList.size(); ++i )
504 {
505 if( scales.count( ioutils::pathFilename( fileList[i].c_str() ) ) > 0 )
506 {
507 fakeScale[i] = scales[ioutils::pathFilename( fileList[i].c_str() )];
508 }
509 else
510 {
511 std::cerr << "File name not found in fakeScaleFile:\n";
512 std::cerr << ioutils::pathFilename( fileList[i].c_str() ) << "\n";
513 exit( -1 );
514 }
515 }
516 } // if(fakeScaleFileName != "")
517
518 if( m_fakeMethod == HCI::single )
519 {
520 if( ff.read( fakePSF, m_fakeFileName ) < 0 )
521 return -1;
522 }
523
524 if( m_fakeMethod == HCI::list )
525 {
526 if( ioutils::readColumns( m_fakeFileName, fakeFiles ) < 0 )
527 return -1;
528 }
529
530 for( int i = 0; i < ims.planes(); ++i )
531 {
532 if( m_fakeMethod == HCI::list )
533 {
534 ff.read( fakePSF, fakeFiles[i] );
535 }
536
537 for( size_t j = 0; j < m_fakeSep.size(); ++j )
538 {
539 if( injectFake( fakePSF,
540 ims,
541 i,
542 derotF.derotAngle( i ),
543 m_fakePA[j],
544 m_fakeSep[j],
545 m_fakeContrast[j],
546 fakeScale[j],
547 RDIFluxScale,
548 RDISepScale ) < 0 )
549 return -1;
550 }
551 }
552
553 t_fake_end = sys::get_curr_time();
554
555 return 0;
556}
557
558template <typename _realT, class _derotFunctObj>
560 eigenCube<realT> &ims,
561 int image_i,
562 realT derotAngle,
563 realT PA,
564 realT sep,
565 realT contrast,
566 realT scale,
567 realT RDIFluxScale,
568 realT RDISepScale )
569{
570 // Check for correct sizing
571 if( ( fakePSF.rows() < ims.rows() && fakePSF.cols() >= ims.cols() ) ||
572 ( fakePSF.rows() >= ims.rows() && fakePSF.cols() < ims.cols() ) )
573 {
574 mxThrowException( err::sizeerr,
575 "ADIobservation::injectFake",
576 "fake PSF has different dimensions and can't be sized properly" );
577 }
578
579 // Check if fake needs to be padded out
580 if( fakePSF.rows() < ims.rows() && fakePSF.cols() < ims.cols() )
581 {
582 eigenImageT pfake( ims.rows(), ims.cols() );
583 padImage( pfake, fakePSF, 0.5 * ( ims.rows() - fakePSF.rows() ), 0 );
584 fakePSF = pfake;
585 }
586
587 // Check if fake needs to be cut down
588 if( fakePSF.rows() > ims.rows() && fakePSF.cols() > ims.cols() )
589 {
590 eigenImageT cfake( ims.rows(), ims.cols() );
591 cutPaddedImage( cfake, fakePSF, 0.5 * ( fakePSF.rows() - ims.rows() ) );
592 fakePSF = cfake;
593 }
594
595 if( fakePSF.rows() != ims.rows() || fakePSF.cols() != ims.cols() )
596 {
597 mxThrowException(
599 "ADIobservation::injectFake",
600 "fake PSF has different dimensions and can't be sized properly (is it even in rows and cols?)" );
601 }
602
603 /*** Now shift to the separation and PA, scale, apply contrast, and inject ***/
604 // allocate shifted fake psf
605 eigenImageT shiftFake( fakePSF.rows(), fakePSF.cols() );
606
607 realT ang, dx, dy;
608
609 ang = math::dtor( -1 * PA ) + derotAngle;
610
611 dx = sep * RDISepScale * sin( ang );
612 dy = sep * RDISepScale * cos( ang );
613
614 imageShift( shiftFake, fakePSF, dx, dy, cubicConvolTransform<realT>() );
615
616 ims.image( image_i ) = ims.image( image_i ) + shiftFake * scale * RDIFluxScale * contrast;
617
618 return 0;
619}
620
621template <typename realT, class derotFunctObj>
623{
624 if( this->m_mask.rows() != this->m_Nrows || this->m_mask.cols() != this->m_Ncols )
625 {
626 // clang-format off
627 std::string message = "Mask is not the same size as images.\n";
628 message += " Mask: rows=" + std::to_string(this->m_mask.rows()) + "\n";
629 message += " cols=" + std::to_string(this->m_mask.cols()) + "\n";
630 message += " Images: rows=" + std::to_string(this->m_Nrows) + "\n";
631 message += " cols=" + std::to_string(this->m_Ncols) + "\n";
632 // clang-format on
633
634 mxThrowException( err::invalidconfig, "ADIobservation<realT, derotFunctObj>::makeMaskCube", message );
635 }
636
637 this->m_maskCube.resize( this->m_Nrows, this->m_Ncols, this->m_Nims );
638
639#pragma omp parallel
640 {
641 eigenImageT rm;
642
643#pragma omp for
644 for( int i = 0; i < this->m_Nims; ++i )
645 {
646 rotateMask( rm, this->m_mask, m_derotF.derotAngle( i ) );
647 this->m_maskCube.image( i ) = rm;
648 }
649 }
650
651 ioutils::createDirectories( this->m_auxDataDir );
652 std::ofstream fout( this->m_auxDataDir + "angles.dat" );
653 for( int i = 0; i < this->m_Nims; ++i )
654 {
655 fout << m_derotF.derotAngle( i ) << "\n";
656 }
657 fout.close();
658
660 ff.write( this->m_auxDataDir + "maskCube.fits", this->m_maskCube );
661}
662
663template <typename _realT, class _derotFunctObj>
665{
666 t_derotate_begin = sys::get_curr_time();
667
668 for( size_t n = 0; n < this->m_psfsub.size(); ++n )
669 {
670#pragma omp parallel
671 {
672 eigenImageT rotim;
673 realT derot;
674
675#pragma omp for
676 for( int i = 0; i < this->m_psfsub[n].planes(); ++i )
677 {
678 derot = m_derotF.derotAngle( i );
679 if( derot != 0 )
680 {
681 imageRotate( rotim, this->m_psfsub[n].image( i ), derot, cubicConvolTransform<realT>() );
682 this->m_psfsub[n].image( i ) = rotim;
683 }
684 }
685 }
686 }
687
688 t_derotate_end = sys::get_curr_time();
689}
690
691// If fakeFileName == "" or skipPreProcess == true then use the structure of propagated values
692
693template <typename _realT, class _derotFunctObj>
695{
696 if( head == 0 )
697 return;
698
699 head->append( "", fits::fitsCommentType(), "----------------------------------------" );
700 head->append( "", fits::fitsCommentType(), "mx::ADIobservation parameters:" );
701 head->append( "", fits::fitsCommentType(), "----------------------------------------" );
702
703 head->append( "POSTMEDS", m_postMedSub, "median subtraction after processing" );
704
705 if( m_fakeFileName != "" )
706 {
707 head->append( "FAKEFILE", m_fakeFileName, "name of fake planet PSF file" );
708
709 if( m_fakeScaleFileName != "" )
710 {
711 head->append( "FAKESCFL", m_fakeScaleFileName, "name of fake planet scale file name" );
712 }
713
714 std::stringstream str;
715
716 if( m_fakeSep.size() > 0 )
717 {
718 for( size_t nm = 0; nm < m_fakeSep.size() - 1; ++nm )
719 {
720 str << m_fakeSep[nm] << ",";
721 }
722 str << m_fakeSep[m_fakeSep.size() - 1];
723 head->append<char *>( "FAKESEP", (char *)str.str().c_str(), "separation of fake planets" );
724 }
725
726 if( m_fakePA.size() > 0 )
727 {
728 str.str( "" );
729 for( size_t nm = 0; nm < m_fakePA.size() - 1; ++nm )
730 {
731 str << m_fakePA[nm] << ",";
732 }
733 str << m_fakePA[m_fakePA.size() - 1];
734 head->append<char *>( "FAKEPA", (char *)str.str().c_str(), "PA of fake planets" );
735 }
736
737 if( m_fakeContrast.size() > 0 )
738 {
739 str.str( "" );
740 for( size_t nm = 0; nm < m_fakeContrast.size() - 1; ++nm )
741 {
742 str << m_fakeContrast[nm] << ",";
743 }
744 str << m_fakeContrast[m_fakeContrast.size() - 1];
745 head->append<char *>( "FAKECONT", (char *)str.str().c_str(), "Contrast of fake planets" );
746 }
747 }
748}
749
750template <typename realT>
751class ADIDerotator;
752
753extern template class ADIobservation<float, ADIDerotator<float>>;
754extern template class ADIobservation<double, ADIDerotator<double>>;
755
756} // namespace improc
757} // namespace mx
758
759#endif //__ADIobservation_hpp__
Defines the basic high contrast imaging data type.
mxException for invalid arguments
mxException for invalid config settings
mxException for a size error
Class to manage interactions with a FITS file.
Definition fitsFile.hpp:52
int write(const dataT *im, int d1, int d2, int d3, fitsHeader *head)
Write the contents of a raw array to the FITS file.
int read(dataT *data)
Read the contents of the FITS file into an array.
Definition fitsFile.hpp:829
Class to manage a complete fits header.
size_t count(const std::string &keyword)
Get number of cards with a given keyword.
void append(const fitsHeaderCard &card)
Append a fitsHeaderCard to the end of the header.
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.
int readColumns(const std::string &fname, arrTs &...arrays)
Read in columns from a text file.
Eigen::Array< scalarT, -1, -1 > eigenImage
Definition of the eigenImage type, which is an alias for Eigen::Array.
std::vector< std::string > getFileNames(const std::string &directory, const std::string &prefix, const std::string &substr, const std::string &extension)
Get a list of file names from the specified directory, specifying a prefix, a substring to match,...
int createDirectories(const std::string &path)
Create a directory or directories.
Definition fileUtils.cpp:52
std::string pathFilename(const std::string &fname)
Get the base filename.
Definition fileUtils.cpp:71
realT dtor(realT q)
Convert from degrees to radians.
Definition geo.hpp:138
fakeMethods
Fake injection PSF file specification methods.
@ single
A single PSF is used.
@ list
A list of PSF files, one per input image, is used.
int padImage(imOutT &imOut, imInT &imIn, unsigned int padSz, typename imOutT::Scalar value)
Pad an image with a constant value.
Definition imagePads.hpp:58
int cutPaddedImage(imOutT &imOut, const imInT &imIn, unsigned int padSz)
Cut down a padded image.
void imageRotate(arrT &transim, const arrT2 &im, floatT dq, transformT trans)
Rotate an image represented as an eigen array.
void imageShift(arrOutT &transim, const arrInT &im, floatT1 dx, floatT2 dy, transformT trans)
Shift an image.
void parseStringVector(std::vector< typeT > &v, const std::string &s, char delim=',')
Parses a string into a vector of tokens delimited by a character.
typeT get_curr_time()
Get the current system time in seconds.
Definition timeUtils.hpp:90
void rotateMask(imageT &rotMask, imageT &mask, typename imageT::Scalar angle)
Rotate a binary mask.
Image padding.
int fakeMethodFmStr(const std::string &method)
Get the fake injection method from its string name.
std::string fakeMethodsStr(int method)
Get the string name of a fake injection method.
The mxlib c++ namespace.
Definition mxError.hpp:106
Process an angular differential imaging (ADI) observation.
int readRDIFiles()
Read in the RDI files.
virtual int postRDIReadFiles()
Post reference read actions, including fake injection.
int injectFake(eigenCube< realT > &ims, std::vector< std::string > &fileList, derotFunctObj &derotF, realT RDIfluxScale, realT RDISepScale)
Inkect the fake plants.
std::vector< realT > m_fakeSep
Separation(s) of the fake planet(s)
virtual int postReadFiles()
Actions to take after the files are first read in by HCIobservation.
int readFiles()
Read in the target files.
std::vector< realT > m_fakePA
Position angles(s) of the fake planet(s)
std::vector< realT > m_fakeContrast
Contrast(s) of the fake planet(s)
virtual int postRDICoadd()
Post reference coadd actions.
void derotate()
De-rotate the PSF subtracted images.
std::string m_fakeScaleFileName
One-column text file containing a scale factor for each point in time.
std::string m_fakeFileName
FITS file containing the fake planet PSF to inject or a list of fake images.
int m_fakeMethod
Method for reading fake files, either HCI::single or HCI::list.
virtual int postCoadd()
Post target coadd actions.
virtual void makeMaskCube()
Populate the mask cube which is used for post-processing.
int readPSFSub(const std::string &dir, const std::string &prefix, const std::string &ext, size_t nReductions)
Read in already PSF-subtracted files.
The basic high contrast imaging data type.
Transformation by cubic convolution interpolation.