Skip to content

Instantly share code, notes, and snippets.

@peetonn
peetonn / OpenFace annotations JSON format
Created May 3, 2018 14:55
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",
@peetonn
peetonn / gist:086161b4a9402e4399ca
Created March 18, 2016 20:42
destruction guards?
class Periodic {
public:
Periodic(io_service& io):io_(io), timer_(io){}
// thread-unsafe
void addName(string name){
names_.push_back(name);
}
// thread-safe