-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposition_estimator.h
52 lines (40 loc) · 1.16 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
/*!
* @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 "sensor_manager.h"
#include "map3.h"
#include "block.h"
class PositionEstimator {
private:
Position& _odometry;
Position _world_position; //学習をさせたモデルのワールド座標(未実装)
SensorManager& _sensor;
public:
PositionEstimator(Position& odometry, SensorManager& sensor);
/**
* @fn x,y,rad を連続の値としてdouble型でセットする
*/
void set_position(double_t x, double_t y, double_t rad);
/**
* @fn x,y,rad を連続の値としてdouble型で取得する
*/
Position get_position();
/**
* @fnx,y,rad をブロック単位で取得する
*/
MapPosition get_map_position(); //マップ上のどこのブロックにいるか
/**
* @fn マップ情報をアップデート
*/
void update_map(Map3& _map);
};
#endif //NEWZUZUMOUSE_POSITIONESTIMATER_H