Coder Social home page Coder Social logo

tu-darmstadt-ros-pkg's People

Contributors

jkirchhoff avatar skohlbr avatar thorstengraber avatar

Watchers

 avatar

tu-darmstadt-ros-pkg's Issues

MapRepMultiMap not using all map levels

In hector_mapping, MapRepMultiMap.h implements the MapRepMultiMap class, which 
has a method matchData(). To my understanding, from the article "A Flexible and 
Scalable SLAM System with Full 3D Motion Estimation", this method should go 
through all the map levels and match the DataContainer with each one. However, 
the current implementation does not do so.

A local variable "index" is declared and used in a for loop iterating through 
all the maps in the MapRepMultiMap object, but this index remains unchanged 
between iterations.

The result is a (presumably) suboptimal matching, as it does not utilize all 
the available data. Additionally, not all the MapProcContainers are updated.

The following is a draft for a new implementation (untested):

size_t size = mapContainer.size();
Eigen::Vector3f tmp(beginEstimateWorld);

for (size_t i = size - 1; i >= 0; i--) {
    if (i == 0) {
        tmp = mapContainer[i].matchData(tmp, dataContainer, covMatrix, 5);
    } else {
        dataContainers[i - 1].setFrom(dataContainer, static_cast<float>(1.0 / pow(2.0, static_cast<double>(i))));
        tmp = mapContainer[i].MatchData(tmp, dataContainers[i - 1], covMatrix, 3);
    }
}

I hope this bug can be resolved.

Regards,
Mikael Berg

Original issue reported on code.google.com by [email protected] on 20 Mar 2013 at 12:30

hector_gazebo_plugins error spew


I am using GazeboRosSonar to model some Parallax Ping sonars, and I get the 
following errors:

Error [Param.cc:250] Parameter [offset] is a [string], attempting to get as a 
double.
Error [Param.cc:250] Parameter [drift] is a [string], attempting to get as a 
double.
Error [Param.cc:250] Parameter [driftFrequency] is a [string], attempting to 
get as a double.
Error [Param.cc:250] Parameter [gaussianNoise] is a [string], attempting to get 
as a double.

Removing the param does not help, since it complains about them being missing.

I believe this is actually fixed in SVN, can you please do a point release for 
groovy?

Original issue reported on code.google.com by [email protected] on 3 Mar 2013 at 7:51

New simple_controller urdf file would make the pid controller can not get parameters

In the fuerte branch, the newest update has separated the simple controller 
urdf file from the quadrotor base file, but the rewritten part for pid 
controller parameters would make the controller can not get their parameters, 
for example (rollpitch controller): 
<rollpitch>
   <proportionalGain>10.0</proportionalGain>
   <differentialGain>5.0</differentialGain>
   <limit>0.5</limit>
</rollpitch>

but in the cpp file, the parameter is got through this line: 
if (_sdf->HasElement(prefix + "ProportionalGain"))

Thanks for review!

Original issue reported on code.google.com by [email protected] on 30 Aug 2012 at 5:10

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.