当前位置:   article > 正文

基于yolov5实现FPS游戏自瞄,理论上通杀所有射击游戏_yolov5 ai自瞄开源

yolov5 ai自瞄开源

1、参考大佬细致教学:Python Apex YOLO V5 6.2 目标检测 全过程记录_mrathena的博客-CSDN博客

[Yolov5]使用Ai实现FPS游戏自动瞄准 yolov5fps自瞄 - 简书

2、效果演示:

基于yolov5实现穿越火线(CF)自瞄_穿越火线

3、话不多说,直接上代码:

  1. # 这里是导入依赖,需要这些库
  2. import ctypes
  3. import math
  4. import mss.tools
  5. import torch
  6. from pynput.mouse import Controller
  7. # 传入两个坐标点,计算直线距离的
  8. class Point:
  9. def __init__(self, x1, y1, x2, y2):
  10. self.x1 = x1
  11. self.y1 = y1
  12. self.x2 = x2
  13. self.y2 = y2
  14. class Line(Point):
  15. def __init__(self, x1, y1, x2, y2):
  16. super().__init__(x1, y1, x2, y2)
  17. def getlen(self):
  18. return math.sqrt(math.pow((self.x1 - self.x2), 2) + math.pow((self.y1 - self.y2), 2))
  19. # 加载本地模型
  20. device = torch.device("cuda")
  21. model = torch.hub.load('D:/Users/20064/PycharmProjects/yolov5-02', 'custom',
  22. 'D:/Users/20064/PycharmProjects/yolov5-02/runs/train/exp4/weights/best.pt',
  23. source='local', force_reload=False)
  24. # 定义屏幕宽高
  25. game_width = 1024
  26. game_height = 768
  27. rect = (0, 0, game_width, game_height)
  28. m = mss.mss()
  29. mt = mss.tools
  30. # 加载罗技鼠标驱动,驱动资源来自互联网
  31. driver = ctypes.CDLL('myProjects/logitech.driver.dll')
  32. ok = driver.device_open() == 1
  33. if not ok:
  34. print('初始化失败, 未安装lgs/ghub驱动')
  35. # 截图保存
  36. def screen_record():
  37. img = m.grab(rect)
  38. mt.to_png(img.rgb, img.size, 6, "myProjects/cfbg.png")
  39. # 这边就是开始实时进行游戏窗口推理了
  40. # 无限循环 -> 截取屏幕 -> 推理模型获取到每个敌人坐标 -> 计算每个敌人中心坐标 -> 挑选距离准星最近的敌人 -> 则控制鼠标移动到敌人的身体或者头部
  41. while True:
  42. # 截取屏幕
  43. screen_record()
  44. # 使用模型
  45. model = model.to(device)
  46. # 开始推理
  47. results = model('myProjects/cfbg.png')
  48. # 过滤模型
  49. xmins = results.pandas().xyxy[0]['xmin']
  50. ymins = results.pandas().xyxy[0]['ymin']
  51. xmaxs = results.pandas().xyxy[0]['xmax']
  52. ymaxs = results.pandas().xyxy[0]['ymax']
  53. class_list = results.pandas().xyxy[0]['class']
  54. confidences = results.pandas().xyxy[0]['confidence']
  55. newlist = []
  56. for xmin, ymin, xmax, ymax, classitem, conf in zip(xmins, ymins, xmaxs, ymaxs, class_list, confidences):
  57. if classitem == 0 and conf > 0.5:
  58. newlist.append([int(xmin), int(ymin), int(xmax), int(ymax), conf])
  59. # 循环遍历每个敌人的坐标信息传入距离计算方法获取每个敌人距离鼠标的距离
  60. if len(newlist) > 0:
  61. print('newlist:', newlist)
  62. # 存放距离数据
  63. cdList = []
  64. xyList = []
  65. for listItem in newlist:
  66. # 当前遍历的人物中心坐标
  67. xindex = int(listItem[2] - (listItem[2] - listItem[0]) / 2)
  68. yindex = int(listItem[3] - (listItem[3] - listItem[1]) * 2 / 3)
  69. mouseModal = Controller()
  70. x, y = mouseModal.position
  71. L1 = Line(x, y, xindex, yindex)
  72. print(int(L1.getlen()), x, y, xindex, yindex)
  73. # 获取到距离并且存放在cdList集合中
  74. cdList.append(int(L1.getlen()))
  75. xyList.append([xindex, yindex, x, y])
  76. # 这里就得到了距离最近的敌人位置了
  77. minCD = min(cdList)
  78. # 如果敌人距离鼠标坐标小于150则自动进行瞄准,这里可以改大改小,小的话跟枪会显得自然些
  79. if minCD < 150:
  80. for cdItem, xyItem in zip(cdList, xyList):
  81. if cdItem == minCD:
  82. print(cdItem, xyItem)
  83. # 使用驱动移动鼠标
  84. driver.moveR(int(xyItem[0] - xyItem[2]),
  85. int(xyItem[1] - xyItem[3]), True)
  86. break

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/102826
推荐阅读
相关标签
  

闽ICP备14008679号