2022-02-12 00:28:54 +01:00
|
|
|
#pragma once
|
|
|
|
|
2022-02-15 13:17:14 +01:00
|
|
|
#include <optional>
|
2022-02-12 00:28:54 +01:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "bounding_box.h"
|
|
|
|
#include "frame.h"
|
|
|
|
|
2022-02-15 13:17:14 +01:00
|
|
|
namespace freling {
|
|
|
|
|
|
|
|
std::optional<Frame> pack(const Frame& in_frame,
|
|
|
|
const std::vector<BoundingBox>& bboxes);
|
|
|
|
|
|
|
|
}
|