SourceXtractorPlusPlus  0.15
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GrowthCurveResampled.h
Go to the documentation of this file.
1 
18 #ifndef _SEIMPLEMENTATION_PLUGIN_GROWTHCURVE_GROWTHCURVERESAMPLED_H_
19 #define _SEIMPLEMENTATION_PLUGIN_GROWTHCURVE_GROWTHCURVERESAMPLED_H_
20 
21 #include <NdArray/NdArray.h>
24 
25 namespace SourceXtractor {
26 
32 public:
33  virtual ~GrowthCurveResampled() = default;
34 
36  : m_samples{std::move(samples)}, m_step_size{std::move(step_size)} {}
37 
39  return m_samples;
40  }
41 
43  return m_step_size;
44  }
45 
46 private:
49 };
50 
51 } // end of namespace SourceXtractor
52 
53 #endif /* _SEIMPLEMENTATION_PLUGIN_GROWTHCURVE_GROWTHCURVERESAMPLED_H_ */
Base class for all Properties. (has no actual content)
Definition: Property.h:33
T move(T...args)
std::vector< double > getStepSize() const
Euclid::NdArray::NdArray< DetectionImage::PixelType > m_samples
GrowthCurveResampled(Euclid::NdArray::NdArray< DetectionImage::PixelType > &&samples, std::vector< double > &&step_size)
const Euclid::NdArray::NdArray< DetectionImage::PixelType > & getSamples() const