This commit is contained in:
Fabien Freling 2022-02-17 23:15:45 +01:00
parent 4447cd67d1
commit 5b32c517c1
12 changed files with 179 additions and 16 deletions

View file

@ -1,7 +1,14 @@
#include "a2.h"
#include <cassert>
namespace freling {
std::vector<BoundingBox> A2(const Frame& frame, const Mask& mask) {
assert((bool)"Not implemented\n" && false);
return {};
}
std::vector<BoundingBox> A2(const std::vector<BoundingBox>& regions) {
std::vector<BoundingBox> updated_boxes(regions.size());
for (int i = 0, size = regions.size(); i < size; ++i) {