SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
PixelCentroidTask.h
Go to the documentation of this file.
1
22
23#ifndef _SEIMPLEMENTATION_TASK_PIXELCENTROIDTASK_H
24#define _SEIMPLEMENTATION_TASK_PIXELCENTROIDTASK_H
25
27
28namespace SourceXtractor {
29
35
37
38public:
39
43 virtual ~PixelCentroidTask() = default;
44
45 void computeProperties(SourceInterface& source) const override;
46
47
48private:
49
50}; /* End of PixelCentroidTask class */
51
52
53} /* namespace SourceXtractor */
54
55
56#endif
Task to produce the PixelCentroid Property.
void computeProperties(SourceInterface &source) const override
Computes one or more properties for the Source.
virtual ~PixelCentroidTask()=default
Destructor.
The SourceInterface is an abstract "source" that has properties attached to it.
A Task that acts on a Source to compute one or more properties.
Definition SourceTask.h:36