mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
HCIobservation.cpp
Go to the documentation of this file.
1/** \file HCIobservation.cpp
2 * \author Jared R. Males
3 * \brief Instantiation of the basic high contrast imaging data type.
4 * \ingroup hc_imaging_files
5 * \ingroup image_processing_files
6 *
7 */
8
10
11namespace mx
12{
13
14namespace improc
15{
16
17namespace HCI
18{
19
20std::string meanSubMethodStr( meanSubMethod method )
21{
22 if( method == meanSubMethod::none )
23 {
24 return "none";
25 }
26 else if( method == meanSubMethod::meanImage )
27 {
28 return "meanImage";
29 }
30 else if( method == meanSubMethod::medianImage )
31 {
32 return "medianImage";
33 }
34 else if( method == meanSubMethod::imageMean )
35 {
36 return "imageMean";
37 }
38 else if( method == meanSubMethod::imageMedian )
39 {
40 return "imageMedian";
41 }
42 else if( method == meanSubMethod::imageMode )
43 {
44 return "imageMode";
45 }
46 else
47 {
48 return "UNKNOWN";
49 }
50}
51
52meanSubMethod meanSubMethodFmStr( const std::string &method )
53{
54 if( method == "none" )
55 {
57 }
58 else if( method == "meanImage" )
59 {
61 }
62 else if( method == "medianImage" )
63 {
65 }
66 else if( method == "imageMean" )
67 {
69 }
70 else if( method == "imageMedian" )
71 {
73 }
74 else if( method == "imageMode" )
75 {
77 }
78 else
79 {
81 }
82}
83
84std::string pixelTSNormMethodStr( pixelTSNormMethod method )
85{
86 if( method == pixelTSNormMethod::none )
87 {
88 return "none";
89 }
90 else if( method == pixelTSNormMethod::rms )
91 {
92 return "rms";
93 }
94 else if( method == pixelTSNormMethod::rmsSigmaClipped )
95 {
96 return "rmsSigmaClipped";
97 }
98 else
99 {
100 return "UNKNOWN";
101 }
102}
103
104pixelTSNormMethod pixelTSNormMethodFmStr( const std::string &method )
105{
106 if( method == "none" )
107 {
109 }
110 else if( method == "rms" )
111 {
113 }
114 else if( method == "rmsSigmaClipped" )
115 {
117 }
118 else
119 {
121 }
122}
123
124std::string combineMethodStr( int method )
125{
126 if( method == noCombine )
127 return "noCombine";
128 else if( method == medianCombine )
129 return "medianCombine";
130 else if( method == meanCombine )
131 return "meanCombine";
132 else if( method == sigmaMeanCombine )
133 return "sigmaMeanCombine";
134 else
135 return "UNKNOWN";
136}
137
138int combineMethodFmStr( const std::string &method )
139{
140 if( method == "noCombine" )
141 return noCombine;
142 else if( method == "medianCombine" )
143 return medianCombine;
144 else if( method == "meanCombine" )
145 return meanCombine;
146 else if( method == "sigmaMeanCombine" )
147 return sigmaMeanCombine;
148 else
149 return -1;
150}
151} // namespace HCI
152
153template class HCIobservation<float>;
154template class HCIobservation<double>;
155
156} // namespace improc
157} // namespace mx
Defines the basic high contrast imaging data type.
meanSubMethod
Mean subtraction methods.
@ sigmaMeanCombine
Combine with the sigma clipped mean.
@ noCombine
Do not combine the images.
@ meanCombine
Combine with the mean.
@ medianCombine
Combine with the median.
@ none
No mean subtraction.
@ medianImage
The median image of the data is subtracted from each image.
@ meanImage
The mean image of the data is subtracted from each image.
@ unknown
unknown value, an error
int combineMethodFmStr(const std::string &method)
Get the combineMethod from the corresponding string name.
std::string combineMethodStr(int method)
Get the string name of the combineMethod integer.
@ rmsSigmaClipped
the sigma clipped rms of the pixel time series
@ none
no pixel time series norm
@ unknown
unknown value, an error
@ rms
the rms of the pixel time series
The mxlib c++ namespace.
Definition mxError.hpp:106