From 40355bae1232106427c61876402163608cce2516 Mon Sep 17 00:00:00 2001 From: jzq <1391797124@qq.com> Date: Tue, 11 Jun 2024 13:16:33 +0000 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20yolo.h?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yolo.h | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 yolo.h diff --git a/yolo.h b/yolo.h deleted file mode 100644 index 1793fc3..0000000 --- a/yolo.h +++ /dev/null @@ -1,21 +0,0 @@ -#pragma once - -#include - -class Yolo -{ -private: - cv::Mat image; - cv::Mat boxes; -public: - Yolo(std::string modelPath); // initialize detector here, may need more args - // void gpuInit(/* args */); // initialize the GPU, may called by the constructor - void detect(cv::Mat image); // detect objects in the image, return the 2d mat - // which every row represents for an object - cv::Mat getBoxes(); // return infomation about the detected objects - // may called by the detect function - // void preProcess(/* args */); - // void postProcess(/* args */); -}; - -