map regions in origin
This commit is contained in:
parent
38e9a97a85
commit
4447cd67d1
7 changed files with 82 additions and 12 deletions
12
src/mapping.h
Normal file
12
src/mapping.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "bounding_box.h"
|
||||
|
||||
namespace freling {
|
||||
std::vector<BoundingBox> map_to_origin(
|
||||
const std::vector<BoundingBox>& origin_bboxes,
|
||||
const std::vector<BoundingBox>& packed_bboxes,
|
||||
const std::vector<BoundingBox>& a2_bboxes);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue