7 lines
133 B
C++
7 lines
133 B
C++
|
#include "pack.h"
|
||
|
|
||
|
Frame pack(const Frame& in_frame, const std::vector<BoundingBox>& bboxes) {
|
||
|
// TODO
|
||
|
return Frame(1, 1);
|
||
|
}
|