#ifndef AUTO_AIM__CLASSIFIER_HPP #define AUTO_AIM__CLASSIFIER_HPP #include #include #include #include "armor.hpp" namespace auto_aim { class Classifier { public: explicit Classifier(const std::string & config_path); void classify(Armor & armor); void ovclassify(Armor & armor); private: cv::dnn::Net net_; ov::Core core_; ov::CompiledModel compiled_model_; }; } // namespace auto_aim #endif // AUTO_AIM__CLASSIFIER_HPP