Code Monkey home page Code Monkey logo

Comments (2)

HuanWeng avatar HuanWeng commented on September 13, 2024 1

Hi Henrique,

Those two functions will output Jb and Js known as manipulator Jacobian. They can not be used for the mapping in Figure 5.4. The Jacobian used in Figure 5.4 is part of analytic Jacobian. The author got it by deriving from forward kinematics instead of converting between Jacobians, which is shown in the preface of Chapter 5. But you can get that using conversion as well.

Hope my explanation makes sense to you. It is a pretty good question though.

Many thanks,
Huan Weng

from modernrobotics.

ferrolho avatar ferrolho commented on September 13, 2024

In order to compute the Geometric Jacobian, JGeom, from a Body Manipulator Jacobian, Jb, I have been using the following transformation:

J_{Geom}

Following is the respective Python code:

T_sb = mr.FKinSpace(self.M, self.Slist, thetalist)
R_sb, _ = mr.TransToRp(T_sb)

vel_transform = np.eye(6)
vel_transform[:3, :3] = R_sb
vel_transform[3:, 3:] = R_sb

J_b_theta = mr.JacobianBody(self.Blist, thetalist)

J = np.dot(vel_transform, J_b_theta)

This is basically computing the Manipulator Jacobian given in end-effector frame and then rotating it by the rotation of the end-effector itself in space-frame coordinates.

from modernrobotics.

Related Issues (20)

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.