add mask
This commit is contained in:
parent
4447cd67d1
commit
5b32c517c1
12 changed files with 179 additions and 16 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue