pandas 如何在python中获取最近的实体[已关闭]

lsmd5eda  于 2022-11-20  发布在  Python
关注(0)|答案(1)|浏览(174)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
4天前关闭。
Improve this question
我的代码:

  1. from mss import mss
  2. import math
  3. import cv2
  4. import numpy as np
  5. import torch
  6. model = torch.hub.load(r'yolov5-master', 'custom', path=r'8.pt', source='local')
  7. with mss() as sct:
  8. monitor = {"top": 220, "left": 640, "width": 640, "height":640}
  9. while True:
  10. screenshot = np.array(sct.grab(monitor))
  11. screenshot = cv2.cvtColor(screenshot, cv2.COLOR_BGR2RGB)
  12. results = model(screenshot, size=640)
  13. df = results.pandas().xyxy[0]
  14. distances = []
  15. closest = 1000
  16. for i in range(len(results.xyxy[0])):
  17. try:
  18. xmin = int(df.iloc[i, 0])
  19. ymin = int(df.iloc[i, 1])
  20. xmax = int(df.iloc[i, 2])
  21. ymax = int(df.iloc[i, 3])
  22. centerX = (xmax + xmin) / 2 + xmin
  23. centerY = (ymax + ymin) / 2 + ymin
  24. distance2 = math.sqrt(((centerX - 320) ** 2) + ((centerY - 320) ** 2))
  25. distances.append(distance2)
  26. if closest > distances[i]:
  27. closest = distances[i]
  28. closestEnemy = i

现在唯一的问题是,它似乎没有得到最近的敌人,是我的数学错误吗?如果我的数学应该是错误的,我如何改善它?同样,如果我的数学是正确的,我如何改善它,以实现我的目标,得到最近的实体?任何帮助将非常感谢。提前感谢每一个人谁投资他/她的时间在帮助我:)

xeufq47z

xeufq47z1#

不太清楚,你到底在找什么......不过我猜,在计算敌人的中心位置时,可能会出现一个小错误用途:

  1. centerX = (xmax + xmin) / 2 # do not add xmin here
  2. centerY = (ymax + ymin) / 2 # do not add ymin here

或者计算最小值和最大值之间的距离并再次加上最小值:

  1. centerX = (xmax - xmin) / 2 + xmin # subtract minimum from maximum
  2. centerY = (ymax - ymin) / 2 + ymin # subtract minimum from maximum

**附加备注:**从性能Angular 来看,在panda Dataframe 上进行迭代并不是一个好主意。另一种方法是在 Dataframe 中添加一个新列distance,然后搜索最小值的索引:

  1. df['distance'] = (
  2. (( (df['xmax']+df['xmin'])/2 - 320) ** 2) +
  3. (( (df['ymax']+df['ymin'])/2 - 320) ** 2)
  4. ) **0.5
  5. closest_enemy = df['distance'].idxmin()
展开查看全部

相关问题