修复cnn人脸检测,准确率高但速度慢于hog

This commit is contained in:
lededev
2022-04-18 04:23:12 +08:00
parent de58cc89d5
commit 6794677006
2 changed files with 11 additions and 3 deletions

View File

@@ -1,4 +1,8 @@
import hog
import sys
sys.path.append('../')
from ImageProcessing.hog import face_center as hog_face_center
def face_center(filename, model):
return hog.face_center(filename, model)
return hog_face_center(filename, model)