-
Notifications
You must be signed in to change notification settings - Fork 0
/
position_estimator.h
56 lines (41 loc) · 1.09 KB
/
position_estimator.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*!
* @file position_estimator.h v1.0
* @Copyright © 2018 Kazushi Kurasawa
* @date 2018.11.16
*
* Released under the MIT license.
* see https://opensource.org/licenses/MIT
*/
#ifndef NEWZUZUMOUSE_POSITIONESTIMATER_H
#define NEWZUZUMOUSE_POSITIONESTIMATER_H
#include "motor.h"
#include "point.h"
#include "distance_sensor.h"
#include "map.h"
#include "block.h"
namespace mslh {
class PositionEstimator {
public:
PositionEstimator(Position& odometry, DistanceSensor &sensor);
/**
* @fn x,y,rad を連続の値としてdouble型でセットする
*/
void setPosition(float32_t x, float32_t y, float32_t rad);
/**
* @fn x,y,rad を連続の値としてdouble型で取得する
*/
Position getPosition();
/**
* @fnx,y,rad をブロック単位で取得する
*/
MapPosition getMapPosition(); //マップ上のどこのブロックにいるか
/**
* @fn マップ情報をアップデート
*/
void updateMap(Map &_map);
private:
Position &_odometry;
DistanceSensor &_sensor;
};
}
#endif //NEWZUZUMOUSE_POSITIONESTIMATER_H