​​​​​​​CV:利用cv2(加载人脸识别xml文件及detectMultiScale函数得到人脸列表)+keras的load_model(加载表情hdf5、性别hdf5)并标注


钻石发嗲
钻石发嗲 2022-09-20 09:57:03 67955
分类专栏: 资讯

CV:利用cv2+自定义load_detection_model(加载人脸识别xml文件及detectMultiScale函数得到人脸列表)+keras的load_model(加载表情hdf5、性别hdf5)实现标注脸部表情和性别label
CV:利用cv2(加载人脸识别xml文件及detectMultiScale函数得到人脸列表)+keras的load_model(加载表情hdf5、性别hdf5)并标注代码实现

目录

输出结果

设计思路

核心代码

相关案例推荐


输出结果

设计思路

核心代码

gitee链接

https://gitee.com/yunyaniu/Python_GUI/tree/master/SR%20and%20TD%20with%20BCT%20to%20Automatic%20Alarm%20GDCup/CV_face_classification_emotion_genderhttps://gitee.com/yunyaniu/Python_GUI/tree/master/SR%20and%20TD%20with%20BCT%20to%20Automatic%20Alarm%20GDCup/CV_face_classification_emotion_gender

  1. CV:基于Keras利用cv2+自定义load_detection_model(加载人脸识别xml文件及detectMultiScale函数得到人脸列表)+keras的load_model(加载表情hdf5、性别hdf5)实现标注脸部表情和性别label——Jason Niu
  2. import sys
  3. import cv2
  4. from keras.models import load_model
  5. import numpy as np
  6. image_path ="F:/File_Python/Resources/hezhao05.jpg"
  7. detection_model_path = '../trained_models/detection_models/haarcascade_frontalface_default.xml'
  8. emotion_model_path = '../trained_models/emotion_models/fer2013_mini_XCEPTION.102-0.66.hdf5'
  9. gender_model_path = '../trained_models/gender_models/simple_CNN.81-0.96.hdf5'
  10. emotion_labels = get_labels('fer2013')
  11. gender_labels = get_labels('imdb')
  12. font = cv2.FONT_HERSHEY_SIMPLEX
  13. gender_offsets = (30, 60)
  14. gender_offsets = (10, 10)
  15. emotion_offsets = (20, 40)
  16. emotion_offsets = (0, 0)
  17. face_detection = load_detection_model(detection_model_path)
  18. emotion_classifier = load_model(emotion_model_path, compile=False)
  19. gender_classifier = load_model(gender_model_path, compile=False)
  20. emotion_target_size = emotion_classifier.input_shape[1:3]
  21. gender_target_size = gender_classifier.input_shape[1:3]
  22. rgb_image = load_image(image_path, grayscale=False)
  23. gray_image = load_image(image_path, grayscale=True)
  24. gray_image = np.squeeze(gray_image)
  25. gray_image = gray_image.astype('uint8')
  26. faces = detect_faces(face_detection, gray_image)
  27. for face_coordinates in faces:
  28. x1, x2, y1, y2 = apply_offsets(face_coordinates, gender_offsets)
  29. rgb_face = rgb_image[y1:y2, x1:x2]
  30. x1, x2, y1, y2 = apply_offsets(face_coordinates, emotion_offsets)
  31. gray_face = gray_image[y1:y2, x1:x2]
  32. try:
  33. rgb_face = cv2.resize(rgb_face, (gender_target_size))
  34. gray_face = cv2.resize(gray_face, (emotion_target_size))
  35. except:
  36. continue
  37. rgb_face = preprocess_input(rgb_face, False)
  38. rgb_face = np.expand_dims(rgb_face, 0)
  39. gender_prediction = gender_classifier.predict(rgb_face)
  40. gender_label_arg = np.argmax(gender_prediction)
  41. gender_text = gender_labels[gender_label_arg]
  42. gray_face = preprocess_input(gray_face, True)
  43. gray_face = np.expand_dims(gray_face, 0)
  44. gray_face = np.expand_dims(gray_face, -1)
  45. emotion_label_arg = np.argmax(emotion_classifier.predict(gray_face))
  46. emotion_text = emotion_labels[emotion_label_arg]
  47. if gender_text == gender_labels[0]:
  48. color = (255, 255, 0)
  49. else:
  50. color = (255, 0, 0)
  51. draw_bounding_box(face_coordinates, rgb_image, color)
  52. draw_text(face_coordinates, rgb_image, gender_text, color, 0, -20, 1, 2)
  53. draw_text(face_coordinates, rgb_image, emotion_text, color, 0, -50, 1, 2)
  54. bgr_image = cv2.cvtColor(rgb_image, cv2.COLOR_RGB2BGR)
  55. save_img='F:/File_Python/Resources/hezhao041.jpg'
  56. cv2.imwrite(save_img, bgr_image)
  57. cv2.imshow('Emotion and Gender test', rgb_image)
  58. cv2.waitKey(0)
  59. cv2.destroyAllWindows()

相关案例推荐

类似案例:https://blog.csdn.net/qq_41185868/article/details/90488469




相关文章
CV:利用cv2+自定义load_detection_model(加载人脸识别xml文件及detectMultiScale函数得到人脸列表)+keras的load_model(加载表情hdf5、性别hdf5)实现标注脸部表情和性别label

文章知识点与官方知识档案匹配,可进一步学习相关知识
Python入门技能树人工智能深度学习123871 人正在系统学习中

网站声明:如果转载,请联系本站管理员。否则一切后果自行承担。

本文链接:https://www.xckfsq.com/news/show.html?id=3983
赞同 0
评论 0 条
钻石发嗲L0
粉丝 0 发表 7 + 关注 私信
上周热门
Kingbase用户权限管理  2020
信刻全自动光盘摆渡系统  1749
信刻国产化智能光盘柜管理系统  1419
银河麒麟添加网络打印机时,出现“client-error-not-possible”错误提示  1013
银河麒麟打印带有图像的文档时出错  923
银河麒麟添加打印机时,出现“server-error-internal-error”  714
麒麟系统也能完整体验微信啦!  657
统信桌面专业版【如何查询系统安装时间】  632
统信操作系统各版本介绍  623
统信桌面专业版【全盘安装UOS系统】介绍  597
本周热议
我的信创开放社区兼职赚钱历程 40
今天你签到了吗? 27
信创开放社区邀请他人注册的具体步骤如下 15
如何玩转信创开放社区—从小白进阶到专家 15
方德桌面操作系统 14
我有15积分有什么用? 13
用抖音玩法闯信创开放社区——用平台宣传企业产品服务 13
如何让你先人一步获得悬赏问题信息?(创作者必看) 12
2024中国信创产业发展大会暨中国信息科技创新与应用博览会 9
中央国家机关政府采购中心:应当将CPU、操作系统符合安全可靠测评要求纳入采购需求 8

添加我为好友,拉您入交流群!

请使用微信扫一扫!