ShiqiYu / libfacedetection

An open source library for face detection in images. The face detection speed can reach 1000FPS.
Other
12.27k stars 3.05k forks source link

how to using onnx model without cv FaceDetectorYN #368

Open NinjaCats opened 10 months ago

NinjaCats commented 10 months ago

I didn't find relevant code in <opencv2/objdetect/face.hpp>. Could you please explain the meaning of these outputs? I want to integrate them into another platform where I can't use OpenCV

this is face_detection_yunet_2023mar.onnx outputs 0 cls_8: [1, 6400, 1] 1 cls_16: [1, 1600, 1] 2 cls_32: [1, 400, 1] 3 obj_8: [1, 6400, 1] 4 obj_16: [1, 1600, 1] 5 obj_32: [1, 400, 1] 6 bbox_8: [1, 6400, 4] 7 bbox_16: [1, 1600, 4] 8 bbox_32: [1, 400, 4] 9 kps_8: [1, 6400, 10] 10 kps_16: [1, 1600, 10] 11 kps_32: [1, 400, 10]

darnellcoco commented 6 months ago

Also meet this problem, do u get the meaning of these outputs now?