赞
踩
下载文件,提取码:3690,将文件存放在任意你找得到的位置(我放在了D盘)
设置系统环境变量,在path中新建环境变量即你存放资源文件的位置
打开命令行窗口输入
pip install dlib-19.19.0-cp38-cp38-win_amd64.whl
pip install dlib-19.19.0-cp38-cp38-win_amd64.whl
完成后,看见dlib则成功安装
pip list
值得一提的是在实验中有可报这样一个错误:
Unable to open dlib/shape_predictor_68_face_landmarks.dat --dlib.shape_predictor()
原因是缺少人脸识别检测器数据库,只需要下载相关文件,提取码:lzjy,同样存放在一个自己找得到的位置,使用时只需要引用即可,例如(我还是存放在D盘)
predictor = dlib.shape_predictor("D:\\FaceRecognitionBasedOnHogSVM\\shape_predictor_68_face_landmarks.dat")
opencv的安装并不负责这里不多做赘述,网上随便找个教程就行。
import numpy as np import cv2 import dlib import os import sys import random # 存储位置 output_dir = './faces' size = 64 if not os.path.exists(output_dir): os.makedirs(output_dir) # 改变图片的亮度与对比度 def relight(img, light=1, bias=0): w = img.shape[1] h = img.shape[0] #image = [] for i in range(0,w): for j in range(0,h): for c in range(3): tmp = int(img[j
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。