mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
KLIPreduction.cpp
Go to the documentation of this file.
1/** \file KLIPreduction.cpp
2 * \author Jared R. Males
3 * \brief Instantiations of an implementation of the Karhunen-Loeve Image Processing (KLIP) algorithm.
4 * \ingroup hc_imaging_files
5 * \ingroup image_processing_files
6 *
7 */
8
11
12namespace mx
13{
14namespace improc
15{
16namespace HCI
17{
18
19
20std::string excludeMethodStr( int method )
21{
22 if( method == excludeNone )
23 return "excludeNone";
24 else if( method == excludePixel )
25 return "excludePixel";
26 else if( method == excludeAngle )
27 return "excludeAngle";
28 else if( method == excludeImno )
29 return "excludeImno";
30 else
31 return "UNKNOWN";
32}
33
34int excludeMethodFmStr( const std::string &method )
35{
36 if( method == "excludeNone" )
37 return excludeNone;
38 else if( method == "excludePixel" )
39 return excludePixel;
40 else if( method == "excludeAngle" )
41 return excludeAngle;
42 else if( method == "excludeImno" )
43 return excludeImno;
44 else
45 return -1;
46}
47
48std::string includeMethodStr( int method )
49{
50 if( method == includeAll )
51 return "includeAll";
52 else if( method == includeCorr )
53 return "includeCorr";
54 else if( method == includeTime )
55 return "includeTime";
56 else if( method == includeAngle )
57 return "includeAngle";
58 else if( method == includeImno )
59 return "includeImno";
60 else
61 return "UNKNOWN";
62}
63
64int includeMethodFmStr( const std::string &method )
65{
66 if( method == "includeAll" )
67 return includeAll;
68 else if( method == "includeCorr" )
69 return includeCorr;
70 else if( method == "includeTime" )
71 return includeTime;
72 else if( method == "includeAngle" )
73 return includeAngle;
74 else if( method == "includeImno" )
75 return includeImno;
76 else
77 return -1;
78}
79} // namespace HCI
80
81template <typename realT>
82class ADIDerotator;
83
84template struct KLIPreduction<float, ADIDerotator<float>, float>;
85template struct KLIPreduction<float, ADIDerotator<float>, double>;
86template struct KLIPreduction<double, ADIDerotator<double>, double>;
87
88} // namespace improc
89} // namespace mx
Defines a generic ADI derotator class.
Declarations and definitions for an implementation of the Karhunen-Loeve Image Processing (KLIP) algo...
@ includeImno
include images which are closest in imno to the target
@ includeTime
include images which are closest in time to the target
@ includeAngle
include images which are closest in angle to the target
@ includeAll
include all images
@ includeCorr
include images which are most correlated with the target
@ excludePixel
Exclude by pixels of rotation.
@ excludeAngle
Exclude by angle of roration.
@ excludeImno
Exclude by number of images.
@ excludeNone
Exclude no images.
The mxlib c++ namespace.
Definition mxError.hpp:106