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

Update Posetrack export #264

Closed
2 tasks
dari1495 opened this issue Mar 23, 2020 · 1 comment
Closed
2 tasks

Update Posetrack export #264

dari1495 opened this issue Mar 23, 2020 · 1 comment
Assignees
Labels
backend PoseTrack This issue is mostly needed for PoseTrack2018

Comments

@dari1495
Copy link
Collaborator

dari1495 commented Mar 23, 2020

Since objects changed, this is a reminder for me to:

  • Check if the export still works
  • Update it to include the new stuff
@dari1495 dari1495 added backend PoseTrack This issue is mostly needed for PoseTrack2018 labels Mar 23, 2020
@dari1495 dari1495 self-assigned this Mar 23, 2020
@dari1495
Copy link
Collaborator Author

dari1495 commented Aug 13, 2020

The objects (bbox, bbox_head, persons) are sometimes created in different objects, but they should be part of the same object under names (bbox, bbox_head, keypoints) respectively.

This is how it looks now:

{
         "category_id":1,
         "track_id":0,
         "person_id":2,
         "bbox":[
            699.136236545022,
            217.90299536628416,
            170.72731712386826,
            462.8384819064431
         ],
         "id":1000002000000,
         "image_id":10000020000,
         "scores":[   ]
      }

And this is how it should look like

{
        {
            "category_id": 1, 
            "track_id": 0, 
            "person_id": 2,
            "bbox": [
                766.875, 
                155.92832185499998, 
                139.75, 
                551.16798399000004
            ], 
            "bbox_head": [
                780, 
                211, 
                53, 
                68
            ],
            "keypoints": [
                806, 
                250, 
                1, 
                (...more points...)
                814, 
                643.5, 
                1
            ],
            "id": 2000002006000,
            "image_id": 20000020060, 
            "scores": [   ]
        }
      }

beapc18 added a commit that referenced this issue Aug 17, 2020
beapc18 added a commit that referenced this issue Aug 17, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backend PoseTrack This issue is mostly needed for PoseTrack2018
Projects
None yet
Development

No branches or pull requests

1 participant