SourceXtractorPlusPlus 0.21
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
PixelBoundariesTask.h
Go to the documentation of this file.
1
23#ifndef _SEIMPLEMENTATION_TASK_PIXELBOUNDARIESTASK_H
24#define _SEIMPLEMENTATION_TASK_PIXELBOUNDARIESTASK_H
25
28
29namespace SourceXtractor {
30
37
38public:
39
43 virtual ~PixelBoundariesTask() = default;
44
45 void computeProperties(SourceInterface& source) const override;
46
47
48private:
49
50}; /* End of PixelBoundariesTask class */
51
52
59
60public:
61
66
67 void computeProperties(SourceInterface& source) const override;
68
69
70private:
71
72}; /* End of PixelBoundariesTaskHalfMaximum class */
73
74} /* namespace SourceXtractor */
75
76
77#endif
Task to produce the PixelBoundariesHalfMaximum Property.
virtual ~PixelBoundariesTaskHalfMaximum()=default
Destructor.
void computeProperties(SourceInterface &source) const override
Computes one or more properties for the Source.
Task to produce the PixelBoundaries Property.
virtual ~PixelBoundariesTask()=default
Destructor.
void computeProperties(SourceInterface &source) const override
Computes one or more properties for the Source.
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