【问题标题】:How to count an object after passing through the line?通过线后如何计算一个物体?
【发布时间】:2020-08-17 06:36:45
【问题描述】:

嘿,我是这个级别的 Python 新手,但我正在努力做到这一点。 我已经检测到视频帧中的对象并对其进行了标记,还计算了帧中的对象总数,但我的问题是如何在通过线后计算对象,如图所示。以及对象类别。

这是我的代码,请详细回答并尝试添加代码。

在图像中,我计算了框架中的总对象,但我想在它们越界时计算它们

提前致谢:)

import cv2
import numpy as np
net = cv2.dnn.readNet('yolov3.weights','yolov3.cfg')
classes = []
with open('coco.names','r') as f:
    classes = f.read().splitlines()
# printing the data which is loaded from the names file
#print(classes)
cap = cv2.VideoCapture('video.mp4')

while True:
    _,img = cap.read()
    height, width, _ = img.shape
    blob = cv2.dnn.blobFromImage(img, 1/255,  (416 , 416), (0,0,0) ,swapRB=True,crop=False)
    net.setInput(blob)
    output_layer_names = net.getUnconnectedOutLayersNames()
    layerOutput = net.forward(output_layer_names)
    boxes = []
    person =0
    truck =0
    car = 0
    confidences = []
    class_ids =[]
    for output in layerOutput:
        for detection in output:
            scores = detection[5:]
            class_id = np.argmax(scores)
            confidence = scores[class_id]
            if confidence > 0.5:
                center_x = int(detection[0]*width)
                center_y = int(detection[1]*height)
                w = int(detection[2]*width)
                h = int(detection[3]*height)


                x = int(center_x - w/2)
                y = int(center_y - h/2)

                boxes.append([x,y,w,h])
                confidences.append((float(confidence)))
                class_ids.append(class_id)
    indexes = cv2.dnn.NMSBoxes(boxes,confidences,0.5,0.4)
    font = cv2.QT_FONT_NORMAL
    colors = np.random.uniform(0,255,size=(len(boxes),3))
    for i in indexes.flatten():
        labelsss = str(classes[class_ids[i]])
        if(labelsss == 'person'):
            person+=1
        if(labelsss == 'car'):
            car+=1
        if(labelsss == 'truck'):
            truck+=1

    for i in indexes.flatten():
        x,y,w,h = boxes[i]
        label =str(classes[class_ids[i]])
        confidence = str(round(confidences[i],1))
        color = colors[i]
        cv2.rectangle(img,(x,y),(x+w , y+h), color, 2)
        cv2.line(img,(1000,250),(5,250),(0,0,0),2)
              
        cv2.putText(img, label + " ", (x, y+20), font, 0.5, (255,255,255),2)
        cv2.putText(img, 'Car'+ ":" + str(car), (20, 20), font, 0.8, (0,0,0),2)
        cv2.putText(img, 'Person'+ ":" + str(person), (20, 50), font, 0.8, (0,0,0),2)
        cv2.putText(img, 'Truck'+ ":" + str(truck), (20, 80), font, 0.8, (0,0,0),2)
        cv2.imshow('Image',img)
        key = cv2.waitKey(1)
        if key == 10:
            break
        
cap.release()
cv2.destroyAllWindows()

【问题讨论】:

    标签: python artificial-intelligence object-detection opencv3.0 yolo


    【解决方案1】:

    我在实习期间做了一个这样的项目。你可以在这里查看代码:https://github.com/sarimmehdi/nanonets_object_tracking/blob/master/test_on_video.py

    简而言之:您应该改为绘制一个矩形(窄),并在它通过矩形时计算跟踪的 ID。如果矩形刚好够窄,也可以避免重新识别的问题。

    【讨论】:

    • 你能解释一下你是如何跟踪对象的技术吗!!!我想得到逻辑....
    • 我在你的照片中看到了轨迹。所以,我假设你已经知道如何跟踪对象(我在我的方法中使用了 Deep SORT)。无论如何,用矩形替换图中的线。设 (x1,y1) 为左上角坐标,(x2,y2) 为右下角坐标。让 (x,y) 成为轨迹的质心。如果 x1
    猜你喜欢
    • 1970-01-01
    • 2016-08-29
    • 1970-01-01
    • 2021-03-13
    • 2018-09-20
    • 2022-10-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多