-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRTEllipsoidFit.m
executable file
·76 lines (60 loc) · 2.7 KB
/
RTEllipsoidFit.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
%//
%// Copyright (c) 2014, richards-tech
%//
%// This file is part of RTEllipsoidFit
%//
%// RTEllipsoidFit is free software: you can redistribute it and/or modify
%// it under the terms of the GNU General Public License as published by
%// the Free Software Foundation, either version 3 of the License, or
%// (at your option) any later version.
%//
%// RTEllipsoidFit 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 General Public License for more details.
%//
%// You should have received a copy of the GNU General Public License
%// along with RTEllipsoidFit. If not, see <http://www.gnu.org/licenses/>.
%//
%// Parts of this file are based on original code as below:
%******************************************************************************************
% Magnetometer Calibration Skript for Razor AHRS v1.4.2
% 9 Degree of Measurement Attitude and Heading Reference System
% for Sparkfun "9DOF Razor IMU" and "9DOF Sensor Stick"
%
% Released under GNU GPL (General Public License) v3.0
% Copyright (C) 2013 Peter Bartz [http://ptrbrtz.net]
% Copyright (C) 2012 Quality & Usability Lab, Deutsche Telekom Laboratories, TU Berlin
% Written by Peter Bartz ([email protected])
%
% Infos, updates, bug reports, contributions and feedback:
% https://github.com/ptrbrtz/razor-9dof-ahrs
%******************************************************************************************
% RTEllipsoidFit
% read in data from saved file
magFile = fopen('magRaw.dta', 'r');
magCalDataMat = fscanf(magFile, '%f %f %f', [3, inf]);
fprintf('Mat size = %d\n', size(magCalDataMat));
fclose(magFile);
% open output file
corrFile = fopen('magCorr.dta', 'w');
% create the vectors
x = magCalDataMat(1, :)';
y = magCalDataMat(2, :)';
z = magCalDataMat(3, :)';
[center, radii, evecs, v] = ellipsoid_fit( [x y z ] );
scaleMat = inv([radii(1) 0 0; 0 radii(2) 0; 0 0 radii(3)]) * min(radii);
correctionMat = evecs * scaleMat * evecs';
% now correct the data to show that it works
magVector = [x - center(1), y - center(2), z - center(3)]'; % take off center offset
%magVector = correctionMat * magVector; % do rotation and scale
magVector = evecs * magVector; % do rotation and scale
xCorr = magVector(1, :); % get corrected vectors
yCorr = magVector(2, :);
zCorr = magVector(3, :);
fprintf(corrFile, '%f %f %f %f %f %f %f %f %f %f %f %f\n',
center(1), center(2), center(3),
correctionMat(1, 1), correctionMat(1, 2), correctionMat(1, 3),
correctionMat(2, 1), correctionMat(2, 2), correctionMat(2, 3),
correctionMat(3, 1), correctionMat(3, 2), correctionMat(3, 3));
fclose(corrFile);