Inverting the Jacobian Matrix
lesson
By inverting the Jacobian matrix we can find the joint velocities required to achieve a particular end-effector velocity, so long as the Jacobian is not singular.
lesson
By inverting the Jacobian matrix we can find the joint velocities required to achieve a particular end-effector velocity, so long as the Jacobian is not singular.
lesson
We learn the mathematical relationship between angular velocity of a body and the time derivative of the rotation matrix describing the orientation of that body.
lesson
As we did for the simple planar robots we can invert the Jacobian and perform resolved-rate motion control.
lesson
For a simple 2-link planar robot we introduce and derive its Jacobian matrix, and also introduce the concept of spatial velocity.
lesson
We resume our analysis of the 6-link robot Jacobian and focus on the rotational velocity part.
lesson
For an image stored as a variable in the MATLAB workspace let’s look at how we access the values of individual pixels in an image using their row and column coordinates. Using the MATLAB colon operator we can extract an intensity profile, extract a submatrix which is a region of the image, flip the image […]
lesson
We learn how to describe the orientation of an object by a 2×2 rotation matrix which has some special properties. Try your hand at some online MATLAB problems. You’ll need to watch all the 2D “Spatial Maths” lessons to complete the problem set.
lesson
Since an image in MATLAB is just a matrix of numbers, we could write code to fill in the elements of the matrix. Let’s look at some simple examples such as squares, circles and lines and more complex images formed by pasting these shapes together.
lesson
The relationship between world coordinates, image coordinates and camera spatial velocity is elegantly summed up by a single matrix equation that involves what we call the image Jacobian.
lesson
The orientation of a body in 3D can be described by three angles, examples of which are Euler angles and roll-pitch-yaw angles. Note that in the MATLAB example at 8:24 note that recent versions of the Robotics Toolbox (9.11, 10.x) give a different result: >> rpy2r(0.1,0.2,0.3)ans = 0.9363 -0.2751 0.2184 0.2896 0.9564 -0.0370 -0.1987 0.0978 […]