上传者: 38736652
|
上传时间: 2022-05-01 18:46:57
|
文件大小: 272KB
|
文件类型: PDF
平台环境是基于Python + TensorFlow下的CNN训练,CNN全称卷积神经网络是当前图像处理最常用的方法之一。
首先准备自己的正面照片100张,使用dlib自带的frontal_face_detector作为我们的特征提取器,把100张照片中的人脸按照长宽64*64提取出来
input_dir = './origin' #100张原始照片
output_dir = './out' #提取人脸的照片
size = 64 # 提取照片大小
#使用dlib自带的frontal_face_detector作为我们的特征提取器
detector = dlib.get_frontal