-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMapWriter.h
41 lines (35 loc) · 977 Bytes
/
MapWriter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef MAP_WRITER_H
#define MAP_WRITER_H
#include <stdio.h>
#include <math.h>
#include "MapIndex.h"
#include "MapPoint.h"
using namespace std;
/**
* This class is used to write a compacted occupancy map. Unfortunately, using a compacted
* map is nearly 2x slower than using a simple bitmap representation of a map. So if you map can be smaller than 60 sqr meters
* compacted maps are not worth it.
*
* We may use this to minimize the size of the map exported from the GPU to the Host though.
**/
class MapWriter
{
public:
MapWriter(int32_t num_buckets, int32_t width, int32_t height);
void addPoint(int16_t x, int16_t y);
void dump(int count);
int getIndexSizeBytes();
int getMapSizeBytes();
void getIndex(MapIndex *index);
void getMap(MapPoint *map);
int getNumBuckets();
~MapWriter();
private:
int32_t _num_buckets;
int32_t _width;
int32_t _height;
int32_t _bucket_size;
MapIndex *_index;
MapPoint *_map;
};
#endif