SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
MeasurementFrameRectangleTask.h
Go to the documentation of this file.
1
17/*
18 * MeasurementFrameRectangleTask.h
19 *
20 * Created on: Sep 24, 2018
21 * Author: Alejandro Alvarez Ayllon
22 */
23
24#ifndef _SEIMPLEMENTATION_PLUGIN_MEASUREMENTFRAMERECTANGLE_MEASUREMENTFRAMERECTANGLETASK_H_
25#define _SEIMPLEMENTATION_PLUGIN_MEASUREMENTFRAMERECTANGLE_MEASUREMENTFRAMERECTANGLETASK_H_
26
27
29
30namespace SourceXtractor {
31
33public:
34
35 virtual ~MeasurementFrameRectangleTask() = default;
36
37 explicit MeasurementFrameRectangleTask(unsigned instance): m_instance{instance} {}
38
39 void computeProperties(SourceInterface& source) const override;
40
41private:
42 unsigned m_instance;
43};
44
45} // end SourceXtractor
46
47
48#endif // _SEIMPLEMENTATION_PLUGIN_MEASUREMENTFRAMERECTANGLE_MEASUREMENTFRAMERECTANGLETASK_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