-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbot_sample.hpp
87 lines (81 loc) · 2.21 KB
/
bot_sample.hpp
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#ifndef BOT_SAMPLE_H
#define BOT_SAMPLE_H
#include "types.hpp"
#include <opencv2/opencv.hpp>
/**
* @brief La muestra de un robot.
*/
class bot_sample {
public:
/**
* @brief Construye una muestra para el robot con id dado.
*/
bot_sample(e_robot id);
virtual ~bot_sample();
/**
* @brief Establece el centro del robot.
*/
virtual void set_center(const cv::Point ¢er);
/**
* @brief Establece la orientacion del robot.
*/
virtual void set_orientation(const cv::Point &orient_vector);
/**
* @brief Establece la velocidad del robot.
*/
virtual void set_speed(const cv::Point &speed_vector);
/**
* @brief Establece la forma del robot.
*/
virtual void set_shape(const std::vector<cv::Point> &shape);
/**
* @brief Devuelve el identificador del robot.
*/
virtual e_robot get_id() const;
/**
* @brief Devuelve el centro del robot.
*/
virtual cv::Point get_center() const;
/**
* @brief Devuelve la orientacion del robot.
*/
virtual cv::Point get_orientation() const;
/**
* @brief Devuelve la velocidad del robot.
*/
virtual cv::Point get_speed() const;
/**
* @brief Devuelve la forma del robot.
*/
virtual std::vector<cv::Point> get_shape() const;
/**
* @brief Devuelve el area del robot.
*/
virtual double get_area() const;
protected:
/**
* @brief Mantiene el centro del robot.
*/
cv::Point center;
/**
* @brief Mantiene la orientacion del robot.
*/
cv::Point orientation;
/**
* @brief Mantiene la velocidad del robot.
*/
cv::Point speed;
/**
* @brief Mantiene la forma del robot.
*/
std::vector<cv::Point> shape;
/**
* @brief Mantiene el area del robot.
*/
double area;
/**
* @brief Mantiene el identificador del robot.
*/
e_robot id;
};
#endif /* BOT_SAMPLE_H */