Giter Site home page Giter Site logo

frobomind's People

Contributors

dimxdk avatar kjeldjensen avatar kschwan avatar leonbondelarsen avatar molar avatar quizzarex avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

frobomind's Issues

NED to ENU conversion of IMU Message Type

if(enu_selected)
{
// ENU ORIENTATION
// swap x and y and negate z
imu_msg.orientation.y = boost::lexical_cast<float>(*tok_iter++);
imu_msg.orientation.x = boost::lexical_cast<float>(*tok_iter++);
imu_msg.orientation.z = - boost::lexical_cast<float>(*tok_iter++);
imu_msg.orientation.w = boost::lexical_cast<float>(*tok_iter++);
tok_iter++; //skip magnetometer
tok_iter++;
tok_iter++;
// acceleration swap x y negate z
imu_msg.linear_acceleration.y = boost::lexical_cast<float>(*tok_iter++);
imu_msg.linear_acceleration.x = boost::lexical_cast<float>(*tok_iter++);
imu_msg.linear_acceleration.z = - boost::lexical_cast<float>(*tok_iter++);
// angular rates swap x y and negate z
imu_msg.angular_velocity.y = boost::lexical_cast<float>(*tok_iter++);
imu_msg.angular_velocity.x = boost::lexical_cast<float>(*tok_iter++);
imu_msg.angular_velocity.z = - boost::lexical_cast<float>(*tok_iter++);
}

When modifying an IMU message from the NED to ENU world reference frame, isn't it incorrect to change the linear acceleration and angular velocity terms since these are specified relative to the local sensor frame rather than relative to the world frame? It is correct to change the orientation term since this defines the transformation to the world frame, but I believe the linear acceleration and angular velocity terms are not impacted by a change in the world reference frame.

frobomind_make fails at line 143 during cut

Fresh clone of frobomind and frobit_demo on Netrunner 14.2 (Ubuntu 14.04 derivative).
$ cd <catkin_workspace>/src
$ frobomind/frobomind_make -i /frobit_demo
Produces
frobomind/frobomind_make: command substitution: line 143: syntax error near unexpected expression ")"
frobomind/frobomind_make: command substitution: line 143: 'echo $APP | cut -c1-1)'
No proper application defined: /frobit_demo

cut is version 8.21

I don't think the ")" is supposed to be in the cut expression on line 143 of frobomind_make.

However, this script did work for me before reinstallation of linux.

As far as I understand, the line command echo $APP | cut -c1-1) is supposed to produce a "/" for frobomind applications. However, it only works for me if I remove the parenthesis echo $APP | cut -c1-1.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.