21 if(method ==
noCombine)
return "noCombine";
23 else if (method ==
meanCombine)
return "meanCombine";
25 else return "UNKNOWN";
30 if(method ==
"noCombine")
return noCombine;
32 else if (method ==
"meanCombine")
return meanCombine;
38 template class HCIobservation<float>;
39 template class HCIobservation<double>;
Defines the basic high contrast imaging data type.
@ sigmaMeanCombine
Combine with the sigma clipped mean.
@ noCombine
Do not combine the images.
@ meanCombine
Combine with the mean.
@ medianCombine
Combine with the median.
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.