python抠人脸_Python用dilb提取照片上人脸的示例

上代码:

#coding=utf-8

import cv2

import dlib

path = "imagePath/9.jpg"

img = cv2.imread(path)

gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

#人脸分类器

detector = dlib.get_frontal_face_detector()

# 获取人脸检测器

predictor = dlib.shape_predictor(

"shape_predictor_68_face_landmarks.dat"

)

color = (0, 255, 0) # 定义绘制颜色

dets = detector(gray, 1)

for face in dets:

shape = predictor(img, face) # 寻找人脸的68个标定点

chang=[]

kuan= []

# 遍历所有点,打印出其坐标,并圈出来

for pt in shape.parts():

pt_pos = (pt.x, pt.y)

chang.append(pt.x)

kuan.append(pt.y)

#cv2.circle(img, pt_pos, 1, (0, 255, 0), 1)

x1 = max(chang)

x2 = min(chang)

y1 = max(kuan)

y2 = min(kuan)

cv2.rectangle(img, (x2, y2), (x1, y1), color, 1)

cropped = img[y2 + 1:y1, x2 + 1:x1] # 裁剪坐标为[y0:y1, x0:x1]

cv2.imshow("image", cropped)

k = cv2.waitKey(0)

if k == ord("s"):

cv2.imwrite("imagePath/9-7.png", cropped)

cv2.destroyAllWindows()

识别效果:

以上就是Python用dilb提取照片上人脸的示例的详细内容,更多关于python 提取人脸的资料请关注随便开发网其它相关文章!

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值