netatmo-algo/src/pack.h

16 lines
306 B
C++

#pragma once
#include <optional>
#include <vector>
#include "bounding_box.h"
#include "frame.h"
namespace freling {
std::optional<Frame> pack(const Frame& in_frame,
const std::vector<BoundingBox>& bboxes,
std::vector<BoundingBox>& packed_bboxes);
}