netatmo-algo/src/pack.cpp

7 lines
137 B
C++
Raw Normal View History

2022-02-12 00:28:54 +01:00
#include "pack.h"
Frame pack(const Frame& in_frame, const std::vector<BoundingBox>& bboxes) {
// TODO
2022-02-13 23:41:08 +01:00
return Frame(in_frame);
2022-02-12 00:28:54 +01:00
}