SourceXtractorPlusPlus  0.15
Please provide a description of the project.
OnnxSourceTask.h
Go to the documentation of this file.
1 
18 #ifndef _SEIMPLEMENTATION_PLUGIN_ONNXSOURCETASK_H_
19 #define _SEIMPLEMENTATION_PLUGIN_ONNXSOURCETASK_H_
20 
23 
24 namespace SourceXtractor {
25 
29 class OnnxSourceTask: public SourceTask {
30 public:
31 
38 
42  ~OnnxSourceTask() override = default;
43 
45  void computeProperties(SourceInterface& source) const override;
46 
47 private:
49 };
50 
51 } // end of namespace SourceXtractor
52 
53 #endif // _SEIMPLEMENTATION_PLUGIN_ONNXSOURCETASK_H_
void computeProperties(SourceInterface &source) const override
Computes one or more properties for the Source.
const std::vector< OnnxModel > & m_models
OnnxSourceTask(const std::vector< OnnxModel > &models)
~OnnxSourceTask() override=default
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