Skip to content

Commit

Permalink
#1475 Fix a bug, the time spent extracting the faces wasn't being dis…
Browse files Browse the repository at this point in the history
…played.
  • Loading branch information
hauck-jvsh committed Jan 18, 2023
1 parent 2d2df9b commit 5a2d0d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iped-app/resources/scripts/tasks/FaceRecognitionTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def finish(self):

if len(encodings)==0:
return
logger.info("[FaceRecognitionTask] Time(s) to extract "+str(len(ids))+ " faces ",str(time.time()-groupTime))
logger.info("[FaceRecognitionTask] Time(s) to extract "+str(len(ids))+ " faces "+str(time.time()-groupTime))
clt = DBSCAN(metric="euclidean",n_jobs=-1,eps=maxClusterDist)
clt.fit(encodings)
clusters={}
Expand Down

0 comments on commit 5a2d0d5

Please sign in to comment.