SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
MeasurementFrameRectangleTaskNoDetect.h
Go to the documentation of this file.
1/*
2 * MeasurementFrameRectangleTaskNoDetect.h
3 *
4 * Created on: May 9, 2023
5 * Author: mschefer
6 */
7
8#ifndef _SEIMPLEMENTATION_PLUGIN_MEASUREMENTFRAMERECTANGLE_MEASUREMENTFRAMERECTANGLETASKNODETECT_H_
9#define _SEIMPLEMENTATION_PLUGIN_MEASUREMENTFRAMERECTANGLE_MEASUREMENTFRAMERECTANGLETASKNODETECT_H_
10
11
13
14namespace SourceXtractor {
15
17public:
18
20
21 explicit MeasurementFrameRectangleTaskNoDetect(unsigned instance): m_instance{instance} {}
22
23 void computeProperties(SourceInterface& source) const override;
24
25private:
26 unsigned m_instance;
27};
28
29} // end SourceXtractor
30
31
32#endif /* _SEIMPLEMENTATION_PLUGIN_MEASUREMENTFRAMERECTANGLE_MEASUREMENTFRAMERECTANGLETASKNODETECT_H_ */
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