Skip to content
Snippets Groups Projects
Commit 72b5ceee authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Relaxed MTCNN parameters

parent 92605a58
No related branches found
No related tags found
1 merge request!140Align faces when only bounding boxes are provided
......@@ -4,7 +4,7 @@ from . import Base
class BobIpMTCNN(Base):
"""Annotator using mtcnn in bob.ip.facedetect"""
def __init__(self, min_size=40, factor=0.709, thresholds=(0.6, 0.7, 0.7), **kwargs):
def __init__(self, min_size=40, factor=0.709, thresholds=(0.1, 0.2, 0.2), **kwargs):
super(BobIpMTCNN, self).__init__(**kwargs)
from bob.ip.facedetect.mtcnn import MTCNN
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment