opencv-mtcnn icon indicating copy to clipboard operation
opencv-mtcnn copied to clipboard

An implementation of MTCNN Face detector using OpenCV's DNN module

Results 7 opencv-mtcnn issues
Sort by recently updated
recently updated
newest added

I tried to change your codes to support cuda, but after using CUDA, the program is slower. When not using cuda, it takes about 0.2 seconds to infer a picture,...

Hello, I see that MTCNN detect_faces prediction is an integer. Is there a way to get higher precision on its predictions? [{'box': [33, 137, 443, 580], 'confidence': 0.9859113693237305, 'keypoints': {'left_eye':...

Hello, I have one question about the input data processing in MTCNNDetector::detect(). ` rgbImg.convertTo(rgbImg, CV_32FC3); rgbImg = rgbImg.t();` Why does rgbImg need a .t()?

if you have python code of project please publish code

I have an issue when using the detector with multithreaded, me process core if I removed the call to the detector no core. how can I check this or fix...