-
Notifications
You must be signed in to change notification settings - Fork 67
/
getWorldTransform.m
62 lines (48 loc) · 2.21 KB
/
getWorldTransform.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
function w_H_frame = getWorldTransform(KinDynModel,frameName)
% GETWORLDTRANSFORM gets the transformation matrix between a specified
% frame and the inertial reference frame.
%
% This matlab function wraps a functionality of the iDyntree library.
% For further info see also: https://github.com/robotology/idyntree
%
% FORMAT: w_H_frame = getWorldTransform(KinDynModel,frameName)
%
% INPUTS: - frameName: a string that specifies the frame w.r.t. compute the
% transfomation matrix, or the associated ID;
% - KinDynModel: a structure containing the loaded model and additional info.
%
% OUTPUTS: - w_H_frame: [4 x 4] from frame to world transformation matrix.
%
% Author : Gabriele Nava ([email protected]), Francisco Andrade
%
% SPDX-FileCopyrightText: Fondazione Istituto Italiano di Tecnologia (IIT)
% SPDX-License-Identifier: BSD-3-Clause
%% ------------Initialization----------------
% get the transformation between the frame and the world in Matlab format
w_H_frame = KinDynModel.kinDynComp.getWorldTransform(frameName).asHomogeneousTransform.toMatlab;
% Debug output
if KinDynModel.DEBUG
w_R_frame = w_H_frame(1:3,1:3);
disp('[getWorldTransform]: debugging outputs...')
% w_R_frame must be a valid rotation matrix
if det(w_R_frame) < 0.9 || det(w_R_frame) > 1.1
error('[getWorldTransform]: w_R_frame is not a valid rotation matrix.')
end
IdentityMatr = w_H_frame(1:3,1:3)*w_H_frame(1:3,1:3)';
for kk = 1:size(IdentityMatr, 1)
for jj = 1:size(IdentityMatr, 1)
if jj == kk
if abs(IdentityMatr(kk,jj)-1) > 0.9
error('[getWorldTransform]: w_R_frame is not a valid rotation matrix.')
end
else
if abs(IdentityMatr(kk,jj)) > 0.1
error('[getWorldTransform]: w_R_frame is not a valid rotation matrix.')
end
end
end
end
disp('[getWorldTransform]: done.')
end
end