netatmo-algo/src/pack.h
Fabien Freling 81463d9eb0 use raygui
2022-02-15 13:19:44 +01:00

15 lines
239 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);
}