Class MultiAIInferenceOp
Defined in File multiai_inference.hpp
Base Type
public holoscan::ops::GXFOperator
(Class GXFOperator)
-
class MultiAIInferenceOp : public holoscan::ops::GXFOperator
Multi AI Inference Operator class to perform multi model inference.
Class wraps a GXF Codelet(
nvidia::holoscan::multiai::MultiAIInference
).Public Functions
-
template<typename ArgT, typename ...ArgsT, typename = std::enable_if_t<!std::is_base_of_v<Operator, std::decay_t<ArgT>> && (std::is_same_v<Arg, std::decay_t<ArgT>> || std::is_same_v<ArgList, std::decay_t<ArgT>> || std::is_base_of_v<holoscan::Condition, typename holoscan::type_info<ArgT>::derived_type> || std::is_base_of_v<holoscan::Resource, typename holoscan::type_info<ArgT>::derived_type>)>>
inline MultiAIInferenceOp(ArgT &&arg, ArgsT&&... args)
- MultiAIInferenceOp() = default
-
inline virtual const char *gxf_typename() const override
Get the type name of the GXF component.
The returned string is the type name of the GXF component and is used to create the GXF component.
Example: “nvidia::holoscan::AJASource”
- Returns
The type name of the GXF component.
-
virtual void setup(OperatorSpec &spec) override
Define the operator specification.
- Parameters
spec – The reference to the operator specification.
- virtual void initialize() override
Initialize the operator.
This function is called after the operator is created by holoscan::Fragment::make_operator().
-
struct DataMap
DataMap specification
Public Functions
- DataMap() = default
- inline explicit operator bool() const noexcept
- inline void insert(const std::string &key, const std::string &value)
- inline std::map<std::string, std::string> get_map() const
Public Members
- std::map<std::string, std::string> mappings_
-
struct DataVecMap
DataVecMap specification
Public Functions
- DataVecMap() = default
- inline explicit operator bool() const noexcept
- inline void insert(const std::string &key, const std::vector<std::string> &value)
- inline std::map<std::string, std::vector<std::string>> get_map() const
Public Members
- std::map<std::string, std::vector<std::string>> mappings_
-
template<typename ArgT, typename ...ArgsT, typename = std::enable_if_t<!std::is_base_of_v<Operator, std::decay_t<ArgT>> && (std::is_same_v<Arg, std::decay_t<ArgT>> || std::is_same_v<ArgList, std::decay_t<ArgT>> || std::is_base_of_v<holoscan::Condition, typename holoscan::type_info<ArgT>::derived_type> || std::is_base_of_v<holoscan::Resource, typename holoscan::type_info<ArgT>::derived_type>)>>