opencv-mtcnn
opencv-mtcnn copied to clipboard
increased floating point prediction precision
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': (169, 330), 'right_eye': (380, 335), 'nose': (276, 440), 'mouth_left': (162, 551), 'mouth_right': (369, 554)}}]
I would like to see 'left_eye': (169.xx, 330.yy) instead of just 'left_eye': (169, 330)
S