Skip to content

Instantly share code, notes, and snippets.

@peetonn
Created May 3, 2018 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peetonn/a6b9fd3554dada5696f638c81e88e79f to your computer and use it in GitHub Desktop.
Save peetonn/a6b9fd3554dada5696f638c81e88e79f to your computer and use it in GitHub Desktop.
Edge node modules (\yolo, openface, openpose) annotations JSON formats
{
“frameNo”:28782,
“engine”:“openface”,
“annotations”:[
{
"xleft": 0.2,
"xright": 0.3,
"ytop": 0.14,
"ybottom": 0.34,
"label": "Peter Gusev",
"prob": 0.85
},
{
"xleft": 0.5,
"xright": 0.67,
"ytop": 0.45,
"ybottom": 0.64,
"label": "Jeff Burke",
"prob": 0.67
}
]
}
{
“version”:1.0,
“frameNo”:28782,
“engine”:“openpose”,
“annotations”:[
{
“pose_keypoints”:[
115.297,90.0043,0.813231,
99.7451,114.819,0.620058,
61.7931,113.83,0.425881,
46.2294,169.287,0.437796,
0,0,0,
136.692,114.807,0.516508,
162.96,150.326,0.626942,
174.143,170.255,0.549699,
0,0,0,
0,0,0,
0,0,0,
124.539,178.052,0.0602279,
0,0,0,
0,0,0,
107.03,82.6956,0.860699,
118.713,83.1707,0.86991,
84.1665,84.168,0.869336,
0,0,0
],
“face_keypoints”:[
],
“hand_left_keypoints”:[
],
“hand_right_keypoints”:[
]
}
]
}
{
“frameNo”:28782,
“engine”:“yolo”,
“annotations”:[
{
"xleft": 0.2,
"xright": 0.3,
"ytop": 0.14,
"ybottom": 0.34,
"label": "person",
"prob": 0.85
},
{
"xleft": 0.5,
"xright": 0.67,
"ytop": 0.45,
"ybottom": 0.64,
"label": "laptop",
"prob": 0.67
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment