Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Input format to the tracker #3

Open
JunaidCS032 opened this issue Aug 16, 2018 · 4 comments
Open

Input format to the tracker #3

JunaidCS032 opened this issue Aug 16, 2018 · 4 comments

Comments

@JunaidCS032
Copy link

JunaidCS032 commented Aug 16, 2018

Hi, what is the format of the input to the tracker?
is it:
frame bbleft bbtop bbwidth bbheight confidence
?

I am not using any of the standard MOT detections.
thanks.

@SMZCC
Copy link

SMZCC commented Oct 3, 2018

Hello, @JunaidCS032 , do you know why the tracker need the detections as an argument, which I find whose element is a bbox and a score for all sequences? In my opinion, the tracker should be given some bboxes in the first frame of some different objects, then the tracker return the bboxes in the following sequences. Would you please tell me the reason why the tracker need the detections argument? Thanks a lot.

@decajcd
Copy link

decajcd commented Jul 29, 2019

Have you solved this problem?

@lchunleo
Copy link

you may wish to check out the paper for more details. Based on its problem assumption, it is assumed that there are detection in the first and consecutive frames and an IOU between the to-be-tracked object.

@zeleny-ondrej
Copy link

zeleny-ondrej commented Mar 29, 2022

Based on the code at the end of load_mot() function

    for bb, s, c in zip(bbox, scores, classes):
        dets.append({'bbox': (bb[0], bb[1], bb[2], bb[3]), 'score': s, 'class': c})
    data.append(dets)

    return data

and the function load_mot() takes in x1, y1, w, h and converts it to x1, y1, x2, y2 according to the comments in the code.

so i would say detections is list of list with above format.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants