forked from petercorke/robotics-toolbox-matlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sensor.m
161 lines (137 loc) · 4.83 KB
/
Sensor.m
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
%Sensor Sensor superclass
%
% An abstract superclass to represent robot navigation sensors.
%
% Methods::
% plot plot a line from robot to map feature
% display print the parameters in human readable form
% char convert to string
%
% Properties::
% robot The Vehicle object on which the sensor is mounted
% map The PointMap object representing the landmarks around the robot
%
% Reference::
%
% Robotics, Vision & Control,
% Peter Corke,
% Springer 2011
%
% See also RangeBearingSensor, EKF, Vehicle, LandmarkMap.
% Copyright (C) 1993-2017, by Peter I. Corke
%
% This file is part of The Robotics Toolbox for MATLAB (RTB).
%
% RTB is free software: you can redistribute it and/or modify
% it under the terms of the GNU Lesser General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% RTB is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU Lesser General Public License for more details.
%
% You should have received a copy of the GNU Leser General Public License
% along with RTB. If not, see <http://www.gnu.org/licenses/>.
%
% http://www.petercorke.com
classdef (Abstract) Sensor < handle
% TODO, pose option, wrt vehicle
properties
robot
map
verbose
ls
animate % animate sensor measurements
interval % measurement return subsample factor
fail
delay
end
methods
function s = Sensor(robot, map, varargin)
%Sensor.Sensor Sensor object constructor
%
% S = Sensor(VEHICLE, MAP, OPTIONS) is a sensor mounted on a vehicle
% described by the Vehicle subclass object VEHICLE and observing landmarks
% in a map described by the LandmarkMap class object MAP.
%
% Options::
% 'animate' animate the action of the laser scanner
% 'ls',LS laser scan lines drawn with style ls (default 'r-')
% 'skip', I return a valid reading on every I'th call
% 'fail',T sensor simulates failure between timesteps T=[TMIN,TMAX]
%
% Notes::
% - Animation shows a ray from the vehicle position to the selected
% landmark.
%
opt.skip = 1;
opt.animate = false;
opt.fail = [];
opt.ls = 'r-';
opt.delay = 0.1;
[opt,args] = tb_optparse(opt, varargin);
s.interval = opt.skip;
s.animate = opt.animate;
s.robot = robot;
s.map = map;
s.verbose = false;
s.fail = opt.fail;
s.ls = opt.ls;
end
function plot(s, jf)
%Sensor.plot Plot sensor reading
%
% S.plot(J) draws a line from the robot to the J'th map feature.
%
% Notes::
% - The line is drawn using the linestyle given by the property ls
% - There is a delay given by the property delay
if isempty(s.ls)
return;
end
h = findobj(gca, 'tag', 'sensor');
if isempty(h)
% no sensor line, create one
h = plot(0, 0, s.ls, 'tag', 'sensor');
end
% there is a sensor line animate it
if jf == 0
set(h, 'Visible', 'off');
else
xi = s.map.map(:,jf);
set(h, 'Visible', 'on', 'XData', [s.robot.x(1), xi(1)], 'YData', [s.robot.x(2), xi(2)]);
end
pause(s.delay);
drawnow
end
function display(s)
%Sensor.display Display status of sensor object
%
% S.display() displays the state of the sensor object in
% human-readable form.
%
% Notes::
% - This method is invoked implicitly at the command line when the result
% of an expression is a Sensor object and the command has no trailing
% semicolon.
%
% See also Sensor.char.
loose = strcmp( get(0, 'FormatSpacing'), 'loose');
if loose
disp(' ');
end
disp([inputname(1), ' = '])
disp( char(s) );
end % display()
function str = char(s)
%Sensor.char Convert sensor parameters to a string
%
% s = S.char() is a string showing sensor parameters in
% a compact human readable format.
str = [class(s) ' sensor class:'];
str = char(str, char(s.map));
end
end % method
end % classdef