how to use opencv Tracker parameters without selecting a roi

旧时模样 提交于 2021-02-11 15:01:36

问题


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()

回答1:


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)

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

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

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



来源:https://stackoverflow.com/questions/48886532/how-to-use-opencv-tracker-parameters-without-selecting-a-roi

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!