From 56ad08aca7bb578f5f2b9b72a056a321e1227777 Mon Sep 17 00:00:00 2001 From: Mika Fischer Date: Thu, 30 Jun 2011 17:11:44 +0200 Subject: [PATCH] Make FaceDetector plugin less verbose --- sloth/plugins/facedetector.py | 2 -- 1 file changed, 2 deletions(-) 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',