SourceXtractorPlusPlus 0.19.2
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
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
31namespace SourceXtractor {
32
40public:
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
65private:
66
70
71}; /* End of DetectionFramePixelValues class */
72
73} /* namespace SourceXtractor */
74
75
76#endif
The values of a Source's pixels in the detection image. They are returned as a vector in the same ord...
const std::vector< DetectionImage::PixelType > & getValues() const
DetectionFramePixelValues(std::vector< DetectionImage::PixelType > values, std::vector< DetectionImage::PixelType > filtered_values, std::vector< WeightImage::PixelType > variances)
std::vector< DetectionImage::PixelType > m_filtered_values
std::vector< DetectionImage::PixelType > m_variances
const std::vector< DetectionImage::PixelType > & getFilteredValues() const
const std::vector< DetectionImage::PixelType > & getVariances() const
std::vector< DetectionImage::PixelType > m_values
virtual ~DetectionFramePixelValues()=default
Destructor.
Base class for all Properties. (has no actual content)
Definition Property.h:33
T move(T... args)
STL namespace.