Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. Evaluation requires ground truth (GT) annotations available at [PoseTrack](https://posetrack.net) and your method's predictions. Both GT annotations and your predictions must be saved in json format. Following GT annotations, predictions must be stored per sequence using the same structure as GT annotations, and have the same filename as GT annotations. Example of json prediction structure:
  2. ```
  3. {
  4. "annolist": [
  5. {
  6. "image": [
  7. {
  8. "name": "images\/bonn_5sec\/000342_mpii\/00000001.jpg"
  9. }
  10. ],
  11. "annorect": [
  12. {
  13. "x1": [625],
  14. "y1": [94],
  15. "x2": [681],
  16. "y2": [178],
  17. "score": [0.9],
  18. "track_id": [0],
  19. "annopoints": [
  20. {
  21. "point": [
  22. {
  23. "id": [0],
  24. "x": [394],
  25. "y": [173],
  26. },
  27. { ... }
  28. ]
  29. }
  30. ]
  31. },
  32. { ... }
  33. ],
  34. },
  35. { ... }
  36. ]
  37. }
  38. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement