diff --git a/sloth/plugins/facedetector.py b/sloth/plugins/facedetector.py index 5492dac..eddefef 100644 --- a/sloth/plugins/facedetector.py +++ b/sloth/plugins/facedetector.py @@ -17,10 +17,8 @@ class Worker(QThread): def run(self): for i, item in enumerate(self.model.iterator(ImageModelItem)): - print i, item img = self.labeltool.getImage(item) faces = self.det.detectFaces(img) - print faces for face in faces: ann = { 'class': 'face',