feat(face): add yolov5 face detecter

This commit is contained in:
Syd Xu
2021-10-29 19:05:58 +08:00
parent a61f9dc7b0
commit 50e43fc864
49 changed files with 1057 additions and 736 deletions

View File

@@ -8,7 +8,7 @@ public:
virtual ~Detecter() {};
virtual int Detect(const unsigned char*rgbdata,
int img_width, int img_height,
std::vector<HandROI>* rois) = 0;
std::vector<ov::ObjectInfo>& rois) = 0;
};
class DetecterFactory {