Giter VIP home page Giter VIP logo

Comments (1)

karnikram avatar karnikram commented on August 28, 2024

Hi,

'--filter-history-length' and '--data-kernel-len' should be set to 20, right?

Yes.

And how about the '--filter-update-rate'? Is it 60Hz or 100Hz?

It is 100 Hz.

What's more, can you describe how to transform wheel odometry to right heading in detail?

To obtain heading from wheel odometry data we use a standard Madgwick filter such as this one. Once you have the heading, we apply a motion model as described in this code snippet:

def wheel_odom_motion_model(x_t0, odom, odometry_cov):
    current_heading_angle = x_t0[2]
    step_size = np.linalg.norm(odom[:2])
    step = np.array([step_size*np.cos(current_heading_angle), step_size*np.sin(current_heading_angle)])
    noise = sample(odometry_cov)
    step = step + np.random.normal(0,0.01)
    
    heading_delta = odom[2] + np.random.normal(0,0.01)
    
    x_t1 = np.zeros_like(x_t0)
    x_t1[:2] = x_t0[:2] + step

    x_t1[2] = current_heading_angle + heading_delta
    return x_t1

Hope this helps!

from learned-map-prior.

Related Issues (3)

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.