-
Notifications
You must be signed in to change notification settings - Fork 68
/
tranimate2.m
213 lines (189 loc) · 6.12 KB
/
tranimate2.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
%TRANIMATE2 Animate a 2D coordinate frame
%
% TRANIMATE2(P1, P2, OPTIONS) animates a 3D coordinate frame moving from pose X1
% to pose X2. Poses X1 and X2 can be represented by:
% - SE(2) homogeneous transformation matrices (3x3)
% - SO(2) orthonormal rotation matrices (2x2)
%
% TRANIMATE2(X, OPTIONS) animates a coordinate frame moving from the identity pose
% to the pose X represented by any of the types listed above.
%
% TRANIMATE2(XSEQ, OPTIONS) animates a trajectory, where XSEQ is any of
% - SE(2) homogeneous transformation matrix sequence (3x3xN)
% - SO(2) orthonormal rotation matrix sequence (2x2xN)
%
% Options::
% 'fps', fps Number of frames per second to display (default 10)
% 'nsteps', n The number of steps along the path (default 50)
% 'axis',A Axis bounds [xmin, xmax, ymin, ymax, zmin, zmax]
% 'movie',M Save frames as a movie or sequence of frames
% 'cleanup' Remove the frame at end of animation
% 'noxyz' Don't label the axes
% 'rgb' Color the axes in the order x=red, y=green, z=blue
% 'retain' Retain frames, don't animate
% Additional options are passed through to TRPLOT2.
%
% Notes::
% - Uses the Animate helper class to record the frames.
%
% See also TRPLOT, Animate, SE3.animate.
%## 2d homogeneous rotation graphics
% Copyright (C) 1993-2019 Peter I. Corke
%
% This file is part of The Spatial Math Toolbox for MATLAB (SMTB).
%
% Permission is hereby granted, free of charge, to any person obtaining a copy
% of this software and associated documentation files (the "Software"), to deal
% in the Software without restriction, including without limitation the rights
% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
% of the Software, and to permit persons to whom the Software is furnished to do
% so, subject to the following conditions:
%
% The above copyright notice and this permission notice shall be included in all
% copies or substantial portions of the Software.
%
% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
% FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
% COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
% IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
% CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
%
% https://github.com/petercorke/spatial-math
% TODO
% auto detect the axis scaling
function tranimate2(P2, varargin)
opt.fps = 10;
opt.nsteps = 50;
opt.axis = [];
opt.movie = [];
opt.cleanup = false;
opt.retain = false;
opt.time = [];
[opt, args] = tb_optparse(opt, varargin);
ud.opt = opt;
ud.args = args;
if ~isempty(opt.movie)
ud.anim = Animate(opt.movie);
end
P1 = [];
if ~isempty(opt.time) && isempty(opt.fps)
opt.fps = 1 /(opt.time(2) - opt.time(1));
end
% convert rotation matrix to hom transform
if isrot2(P2)
% tranimate2(R1, options)
% tranimate2(R1, R2, options)
T2 = r2t(P2);
if ~isempty(args) && isrot(args{1})
T1 = T2;
T2 = r2t(args{1});
args = args(2:end);
else
T1 = eye(3,3);
end
elseif ishomog2(P2)
% tranimate(T1, options)
% tranimate(T1, T2, options)
T2 = P2;
if ~isempty(args) && ishomog2(args{1})
T1 = T2;
T2 = args{1};
args = args(2:end);
else
T1 = eye(3,3);
end
elseif isa(P2, 'function_handle')
% we were passed a handle
%
% tranimate( @func(x), x, options)
T2 = [];
for x = args{1}
T2 = cat(3, T2, P2(x));
end
end
% at this point
% T1 is the initial pose
% T2 is the final pose
%
% T2 may be a sequence
if size(T2,3) > 1
% tranimate2(Ts)
% we were passed a homog sequence
if ~isempty(P1)
error('only 1 input argument if sequence specified');
end
Ttraj = T2;
else
% tranimate2(P1, P2)
% create a path between them
Ttraj = trinterp2(T1, T2, linspace(0, 1, opt.nsteps));
end
if isempty(opt.axis)
% create axis limits automatically based on motion of frame origin
t = transl2(Ttraj);
mn = min(t) - 1.5; % min value + length of axis + some
mx = max(t) + 1.5; % max value + length of axis + some
axlim = [mn; mx];
axlim = axlim(:)';
args = [args 'axis' axlim];
else
args = [args 'axis' opt.axis];
end
if opt.retain
hold on
ud.hg = []; % indicate no animation
else
ud.hg = trplot2(eye(3,3), args{:}); % create a frame at the origin
end
ud.Ttraj = Ttraj;
if ~isempty(opt.time)
ud.htime = uicontrol('Parent', gcf, 'Style', 'text', ...
'HorizontalAlignment', 'left', 'Position', [50 20 100 20]);
end
% animate it for all poses in the sequence
t = timer('ExecutionMode', 'fixedRate', ...
'BusyMode', 'queue', ...
'UserData', ud, ...
'TasksToExecute', length(ud.Ttraj), ...
'Period', 1/opt.fps/2);
t.TimerFcn = @timer_callback;
start(t);
waitfor(t)
delete(t)
if ~isempty(opt.movie)
ud.anim.close()
end
if opt.cleanup
delete(ud.hg);
end
end
function guts(ud, i)
if isa(ud.Ttraj, 'SO2')
T = ud.Ttraj(i);
else
T = ud.Ttraj(:,:,i);
end
if ud.opt.retain
trplot2(T, ud.args{:});
else
trplot2(T, 'handle', ud.hg);
end
if ~isempty(ud.opt.movie)
ud.anim.add();
end
if ~isempty(ud.opt.time)
set(ud.htime, 'String', sprintf('time %g', ud.opt.time(i)));
end
drawnow
end
function timer_callback(timerObj, ~)
ud = get(timerObj, 'UserData');
if ~ishandle(ud.hg)
% the figure has been closed
stop(timerObj);
delete(timerObj);
end
i = timerObj.TasksExecuted;
guts(ud, i);
end