forked from CCNYRoboticsLab/imu_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request CCNYRoboticsLab#60 from mistoll/ahrs_enu
Add ENU support, fix orientation init
- Loading branch information
Showing
12 changed files
with
904 additions
and
277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
imu_filter_madgwick/include/imu_filter_madgwick/earth_frame.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#ifndef IMU_FILTER_MADGWICK_EARTH_FRAME_H_ | ||
#define IMU_FILTER_MADGWICK_EARTH_FRAME_H_ | ||
|
||
namespace EarthFrame { | ||
enum EarthFrame { ENU, NED, NWU }; | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
imu_filter_madgwick/include/imu_filter_madgwick/stateless_orientation.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright (C) 2010, CCNY Robotics Lab | ||
* Ivan Dryanovski <[email protected]> | ||
* | ||
* http://robotics.ccny.cuny.edu | ||
* | ||
* Based on implementation of Madgwick's IMU and AHRS algorithms. | ||
* http://www.x-io.co.uk/node/8#open_source_ahrs_and_imu_algorithms | ||
* | ||
* | ||
* This program 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. | ||
* | ||
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef IMU_FILTER_MADWICK_STATELESS_ORIENTATION_H | ||
#define IMU_FILTER_MADWICK_STATELESS_ORIENTATION_H | ||
|
||
#include <geometry_msgs/Vector3.h> | ||
#include <geometry_msgs/Quaternion.h> | ||
#include <imu_filter_madgwick/earth_frame.h> | ||
|
||
class StatelessOrientation | ||
{ | ||
public: | ||
static bool computeOrientation( | ||
EarthFrame::EarthFrame frame, | ||
geometry_msgs::Vector3 acceleration, | ||
geometry_msgs::Vector3 magneticField, | ||
geometry_msgs::Quaternion& orientation); | ||
|
||
static bool computeOrientation( | ||
EarthFrame::EarthFrame frame, | ||
geometry_msgs::Vector3 acceleration, | ||
geometry_msgs::Quaternion& orientation); | ||
|
||
}; | ||
|
||
#endif // IMU_FILTER_MADWICK_STATELESS_ORIENTATION_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.