利用OpenCV+Tensorflow实现的手势识别

作者:醉翁之意不在酒~ 时间:2022-04-03 02:12:33 

一、效果展示

此次只选录了以下五种手势,当然你可以自己选择增加手势。

利用OpenCV+Tensorflow实现的手势识别

利用OpenCV+Tensorflow实现的手势识别

利用OpenCV+Tensorflow实现的手势识别

利用OpenCV+Tensorflow实现的手势识别

二、项目实现原理

首先通过opencv的手部检测器检测出我们的手,然后录入自己想要检测的手部信息,使用Tensorflow训练得到预训练权重文件(此处已经训练完成,直接调用即可!),调用预训练权重文件对opencv检测的手部信息进行预测,实时返回到摄像头画面,到此整体项目已经实现,此外还可以添加语音模块如speech,对检测到的手势信息进行语音播报。

三、项目环境安装

首先python的版本此处选择为3.7.7(其余版本相差不大的都可)

然后,我们所需要下载的环境如下所示,你可以将其存为txt格式直接在终端输入(具体格式如下图):

pip install -r environment.txt -i https://pypi.tuna.tsinghua.edu.cn/simple

absl-py==1.2.0
attrs==22.1.0
cvzone==1.5.6
cycler==0.11.0
fonttools==4.37.4
kiwisolver==1.4.4
matplotlib==3.5.3
mediapipe==0.8.9.1
numpy==1.21.6
opencv-contrib-python==4.6.0.66
opencv-python==4.6.0.66
opencv-python-headless==4.6.0.66
packaging==21.3
Pillow==9.2.0
protobuf==3.19.1
pyparsing==3.0.9
python-dateutil==2.8.2
six==1.16.0
speech==0.5.2
typing_extensions==4.4.0

保存格式如下:

利用OpenCV+Tensorflow实现的手势识别

四、代码实现

模型预训练权重如下

点击这里下载

import cv2
from cvzone.HandTrackingModule import HandDetector
from cvzone.ClassificationModule import Classifier
from PIL import Image, ImageDraw, ImageFont
import numpy as np
import math
import time
# import speech

cap = cv2.VideoCapture(0)
cap.set(3, 1280)
cap.set(4, 720)

detector = HandDetector(maxHands=1)
classifile = Classifier("./model/keras_model.h5", "./model/labels.txt")

offset = 20
imgSize = 300
counter = 0
labels = ['666', '鄙视', 'Good', '比心', '击掌', '握拳']

# folder = r"F:\opencv_game\HandSignDetection\Data\Love"

while True:
   success, img = cap.read()
   img = cv2.flip(img, 1)
   imgOutput = img.copy()
   hands, img = detector.findHands(img)
   if hands:
       hand = hands[0]
       x, y, w, h = hand['bbox']
       imgWhite = np.ones((imgSize, imgSize, 3), np.uint8)*255
       imgCrop = img[y - offset:y + h + offset, x - offset:x + w + offset]

imgCropShape = imgCrop.shape

aspectRatio = h/w

if aspectRatio > 1:
           k = imgSize/h
           wCal = math.ceil(k*w)
           imgResize = cv2.resize(imgCrop, (wCal, imgSize))
           imgResizeShape = imgResize.shape
           wGap = math.ceil((imgSize - wCal)/2)
           imgWhite[:, wGap:wCal+wGap] = imgResize
           prediction, index = classifile.getPrediction(imgWhite)
           print(prediction, index)

else:
           k = imgSize / w
           hCal = math.ceil(k * h)
           imgResize = cv2.resize(imgCrop, (imgSize, hCal))
           imgResizeShape = imgResize.shape
           hGap = math.ceil((imgSize - hCal) / 2)
           imgWhite[hGap:hCal + hGap,:] = imgResize
           prediction, index = classifile.getPrediction(imgWhite)

# 解决cv2.putText绘制中文乱码
       def cv2AddChineseText(img, text, position, textColor=(255, 255, 255), textSize=50):
           if (isinstance(img, np.ndarray)):  # 判断是否OpenCV图片类型
               img = Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB))
           # 创建一个可以在给定图像上绘图的对象
           draw = ImageDraw.Draw(img)
           # 字体的格式
           fontStyle = ImageFont.truetype(
               "simsun.ttc", textSize, encoding="utf-8")
           # 绘制文本
           draw.text(position, text, textColor, font=fontStyle)
           # 转换回OpenCV格式
           return cv2.cvtColor(np.asarray(img), cv2.COLOR_RGB2BGR)

cv2.rectangle(imgOutput, (x - offset, y - offset - 50),
                     (x-offset+130, y-offset), (255, 0, 255), cv2.FILLED)
       # cv2.putText(imgOutput, labels[index], (x,y-24),
       #             cv2.FONT_HERSHEY_COMPLEX, 1.5, (255, 255, 255), 2)
       # 中文
       img = cv2AddChineseText(imgOutput, labels[index], (x - offset, y - offset - 50))
       cv2.rectangle(img, (x-offset, y-offset),
                     (x+w+offset, y+h+offset), (255,0,255),4)

# speech.say(labels[index])

# cv2.imshow('ImageCrop', imgCrop)
       # cv2.imshow('ImageWhite', imgWhite)

cv2.imshow('Image', img)
   key = cv2.waitKey(1)
   if key == ord('s'):
       pass
   elif key == 27:
       break

五、总结

来源:https://blog.csdn.net/qq_58535145/article/details/127783349

标签:opencv,tensorflow,手势识别
0
投稿

猜你喜欢

  • 利用python实现凯撒密码加解密功能

    2023-06-20 01:59:16
  • ORACLE 最大连接数的问题

    2009-07-23 14:27:00
  • 将python运行结果保存至本地文件中的示例讲解

    2024-01-03 04:01:52
  • Python 中pandas索引切片读取数据缺失数据处理问题

    2021-06-02 05:13:28
  • 基于Python利用Pygame实现翻转图像

    2021-05-20 00:05:08
  • python实现的B站直播录制工具

    2023-05-29 00:51:48
  • 对SQL Server数据库进行优化的经验总结

    2010-07-26 14:52:00
  • Python数据结构队列解决约瑟夫斯问题

    2022-01-07 03:20:53
  • 微信公众平台开发教程⑤ 微信扫码支付模式介绍

    2023-11-14 10:40:10
  • Yii2 rbac权限控制之菜单menu实例教程

    2023-11-14 10:41:19
  • python使用Pyinstaller如何打包整个项目

    2021-10-27 04:10:58
  • 详解Python中sorted()和sort()的使用与区别

    2022-05-06 17:39:09
  • 多级联动下拉选择框,动态获取下一级

    2008-09-04 10:34:00
  • 详解Python如何实现惰性导入-lazy import

    2023-12-22 20:15:43
  • Python远程控制Windows服务器的方法详解

    2023-07-13 13:14:03
  • Python中int()函数的用法浅析

    2022-08-18 09:45:12
  • 大内存SQL Server数据库的加速剂

    2009-03-06 14:18:00
  • python求最大连续子数组的和

    2022-05-12 07:23:24
  • python人工智能自定义求导tf_diffs详解

    2023-06-11 13:31:51
  • Python实现简单的"导弹" 自动追踪原理解析

    2021-04-15 05:48:27
  • asp之家 网络编程 m.aspxhome.com