SourceXtractorPlusPlus  0.12
Please provide a description of the project.
DetectionFramePixelValues.h
Go to the documentation of this file.
1 
23 #ifndef _SEIMPLEMENTATION_PROPERTY_DETECTIONFRAMEPIXELVALUES_H
24 #define _SEIMPLEMENTATION_PROPERTY_DETECTIONFRAMEPIXELVALUES_H
25 
26 #include <vector>
27 
30 
31 namespace SourceXtractor {
32 
40 public:
41 
45  virtual ~DetectionFramePixelValues() = default;
46 
51  : m_values(std::move(values)), m_filtered_values(filtered_values), m_variances(variances) {}
52 
54  return m_values;
55  }
56 
58  return m_filtered_values;
59  }
60 
62  return m_variances;
63  }
64 
65 private:
66 
70 
71 }; /* End of DetectionFramePixelValues class */
72 
73 } /* namespace SourceXtractor */
74 
75 
76 #endif
const std::vector< DetectionImage::PixelType > & getValues() const
std::vector< DetectionImage::PixelType > m_filtered_values
STL namespace.
Base class for all Properties. (has no actual content)
Definition: Property.h:33
const std::vector< DetectionImage::PixelType > & getFilteredValues() const
DetectionFramePixelValues(std::vector< DetectionImage::PixelType > values, std::vector< DetectionImage::PixelType > filtered_values, std::vector< WeightImage::PixelType > variances)
T move(T... args)
The values of a Source&#39;s pixels in the detection image. They are returned as a vector in the same ord...
std::vector< DetectionImage::PixelType > m_values
virtual ~DetectionFramePixelValues()=default
Destructor.
std::vector< DetectionImage::PixelType > m_variances
const std::vector< DetectionImage::PixelType > & getVariances() const