#ifndef __DETECTOR_YOLOV5_H__ #define __DETECTOR_YOLOV5_H__ #include #include namespace migraphxSamples { typedef struct _YOLOV5Parameter { int numberOfClasses; float confidenceThreshold; float nmsThreshold; float objectThreshold; }YOLOV5Parameter; class DetectorYOLOV5 { public: DetectorYOLOV5(); ~DetectorYOLOV5(); ErrorCode Initialize(InitializationParameterOfDetector initializationParameterOfDetector); ErrorCode Detect(const cv::Mat &srcImage, std::vector &resultsOfDetection); private: cv::FileStorage configurationFile; migraphx::program net; cv::Size inputSize; std::string inputName; migraphx::shape inputShape; bool useFP16; std::vector classNames; YOLOV5Parameter yolov5Parameter; }; } #endif