9 lines
154 B
C
9 lines
154 B
C
|
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
#include "bounding_box.h"
|
||
|
#include "frame.h"
|
||
|
|
||
|
Frame pack(const Frame& in_frame, const std::vector<BoundingBox>& bboxes);
|