如何在不选择投资回报率的情况下使用 opencv Tracker 参数 [英] how to use opencv Tracker parameters without selecting a roi

查看:67
本文介绍了如何在不选择投资回报率的情况下使用 opencv Tracker 参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人可以告诉我在检测到行人后应该将哪个第二个参数传递给 tracker.init() 吗?互联网上只有已选择投资回报率的参数.我试图传递一个变量 rects,但它给了我一个错误

can someone tell me which second parameter I should pass to tracker.init() after detection a pedestrian? there are only parameters with already selected ROI in the internet. I tried to pass a variable rects,but it gives me an error

import numpy as np
import cv2
import sys
from imutils.object_detection import non_max_suppression

cap = cv2.VideoCapture("video.mp4")
hog_descriptor = cv2.HOGDescriptor()
hog_descriptor.setSVMDetector(cv2.HOGDescriptor_getDefaultPeopleDetector())

tracker = cv2.TrackerKCF_create()
ret, frame = cap.read()

while (1):
    ret, frame = cap.read()
    (rects, weights) = hog_descriptor.detectMultiScale(frame, winStride=(16, 16),
                                                       padding=(8, 8), scale=1.05)




    rects = np.array([[x, y, x + w, y + h] for (x, y, w, h) in rects])
    pick = non_max_suppression(rects, probs=None, overlapThresh=0.65)
    for (xA, yA, xB, yB) in rects:
        cv2.rectangle(frame, (xA, yA), (xB, yB), (0, 255, 0), 2)
    ret = tracker.init(frame)

    ret, = tracker.update(frame)
cv2.imshow("video", frame)
if cv2.waitKey(1) == 27:
    break

cap.release()
cv2.destroyAllWindows()

推荐答案

根据 opencv 示例代码 https://github.com/opencv/opencv_contrib/blob/master/modules/tracking/samples/tracker.py,tracker.init的第二个参数是bounding box:

According to opencv sample code https://github.com/opencv/opencv_contrib/blob/master/modules/tracking/samples/tracker.py, second parameter of tracker.init is bounding box:

cv.namedWindow("tracking")
camera = cv.VideoCapture(sys.argv[1])
ok, image=camera.read()
...
bbox = cv.selectROI("tracking", image)
tracker = cv.TrackerMIL_create()
...
ok = tracker.init(image, bbox)

因此,如果您想使用检测到的行人作为 ROI,您应该使用:

So, if you want to use detected pedestrian as ROI, you should use:

bbox = rects[index]
tracker.init(image, bbox)

其中 index 是您要跟踪的检测到的行人数量

where index is the number of detected pedestrian that you want to track

这篇关于如何在不选择投资回报率的情况下使用 opencv Tracker 参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆