Visual Servoing Platform
version 3.6.1 under development (2024-11-14)
|
This tutorial gives some hints to boost your visual servo control law in order to speed up the time to convergence.
Note that all the material (source code and image) described in this tutorial is part of ViSP source code (in tutorial/visual-servoing/ibvs
folder) and could be found in https://github.com/lagadic/visp/tree/master/tutorial/visual-servoing/ibvs.
To illustrate this tutorial let us consider the example tutorial-ibvs-4pts-plotter.cpp introduced in Tutorial: Image-based visual servo. This example consider an image based visual servoing using four points as visual features.
In the general case, considering as the input velocities to the robot controller, the control laws provided in vpServo class lead to the following control law where the sign is negative for an eye in hand servo and positive for an eye to hand servo, is a constant gain, is the task Jacobian and is the error to regulate to zero. As described in [3], this control law ensure an exponential decoupled decrease of the error .
This behavior is illustrated with the next figure, where we see the exponential decrease of the eight visual features (x and y for each point) and the corresponding six velocities that are applied to the robot controller. As a consequence, velocities are high when the error is important, and very low when the error is small near the convergence. At the beginning, we can also notice velocity discontinuities with velocities varying from zero to high values in one iteration.
This behavior can be reproduced running tutorial-ibvs-4pts-plotter.cpp example. Here after we recall the important lines of code used to compute the control law:
As implemented in tutorial-ibvs-4pts-plotter-gain-adaptive.cpp it is possible to adapt the gain in order to depend on the infinity norm of the task Jacobian. The usage of an adaptive gain rather than a constant gain allows to reduce the convergence time. In that case the gain becomes:
where:
The impact of the adaptive gain is illustrated in the next figure. During the servo, velocities applied to the controller are higher, especially when the visual error is small. But as in the previous section, using an adaptive gain doesn't insure continuous velocities especially at the first iteration.
This behavior can be reproduced running tutorial-ibvs-4pts-plotter-gain-adaptive.cpp example. Compared to the previous code given in Introduction and available in tutorial-ibvs-4pts-plotter.cpp, here after we give the new lines of code that were introduced to use an adaptive gain:
To adjust the adaptative gain to your current servoing task, you need to proceed step-by-step :
As implemented in tutorial-ibvs-4pts-plotter-continuous-gain-adaptive.cpp it is also possible to ensure continuous sequencing to avoid velocity discontinuities. This behavior is achieved by introducing an additional term to the general form of the control law. This additional term comes from the task sequencing approach described in [30] equation (17). It allows to compute continuous velocities by avoiding abrupt changes in the command.
The form of the control law considered here is the following:
where :
The effect of continuous sequencing is illustrated in the next figure where during the first iterations velocities are starting from zero.
continuous sequencing."
This behavior can be reproduced running tutorial-ibvs-4pts-plotter-continuous-gain-adaptive.cpp example. Compared to the previous code given in Using an adaptive gain and available in tutorial-ibvs-4pts-plotter-gain-adaptive.cpp, here after we give the new line of code that were introduced to ensure continuous sequencing:
You are now ready to see the Tutorial: PBVS with Panda 7-dof robot from Franka Emika that will show how to use adaptive gain and task sequencing on a real robot.