我的想法是对检测到的所有物体进行计数,但是我不能仅仅对检测到的人数进行计数。
def detected(score, types):
if (types == 1):
if(score > 50):
print('human detected')
final_score = np.squeeze(scores)
for i in range(100):
if scores is None or final_score[i] > 0.5:
z.humancount = z.humancount + 1
在tensorflow中,人员的“类型”等于1。在使用tensorflow检测到所有内容之后,我希望仅对检测到的人员进行计数,而与检测到的其他对象无关。 如果您知道解决问题的方法,请帮助我。非常感谢。