Contents
- 1 WIP
- 2 Active Robots Undergraduate Teaching Resources | Worked Example | Visual Servoing, Pick and Place
- 3 Video
- 4 Summary
- 5 Task
- 6 Prerequisites
- 7 Camera - Workspace Relationship
- 8 Camera Calibration Factor
- 9 Image pixel to Workspace coordinate conversion
- 10 Locating the Segmented Tray in the workspace
- 11 Evaluating Tray Orientation and Interpolating 'Place' Locations
- 12 Locating the Golf Balls
- 13 'Picking' the Golf Balls
- 14 Final Thoughts
- 15 Code
- 16 Installation
- 17 Use
- 18 License / Disclaimer
- 19 WIP
WIP
This page is under construction
Active Robots Undergraduate Teaching Resources | Worked Example | Visual Servoing, Pick and Place
- Developed by: Vyvyan Pugh - Senior Programmer, Active Robots
- Wikified by: Horatio Coles-Abell - Cybernetics Engineer, Active Robots
This entry forms part of the conversion of Active Robots Undergraduate Teaching Resources for the Baxter Research Robot from their current PDF form to entries on this wiki. Feedback from Lecturers/Teachers/Researchers/Users is welcome and can be submitted to Active Robots.
This entry is a worked example for Undergraduate study, it is constructed and simplified for an intended target audience of 1st-2nd year undergraduates [Robotics/Engineering/Computer Science etc.] in a lab exercise environment. As such the code is written in a simplified manner which aims for readability and understanding, over, efficiency or elegance.
Video
Summary
This worked example will focus on:
- Visual Servoing.
- Camera -- End-effector -- Workspace | relationship and calibration.
- Visual Object Recognition.
- Pick target selection.
Techniques that are used but not focused on:
- Inverse Kinematics
- IK poses are used to move the arm in the workspace, in-depth knowledge of IK is not required.
Task
Place a selection of scattered golf balls from the table into a segmented tray.
- Utilise Image Analysis and Visual Servoing to detect and locate golf balls on a table.
- Use Image Analysis and Visual Servoing to detect and locate the destination.
- Use Basic planning to choose a ball and plan a grip.
- Use Inverse Kinematics to position the arm, Pick and Place the golf balls.
Prerequisites
- Baxter Research Robot [Firmware >= v0.7.0]
- Workstation [RSDK >= v0.7.0]
- 1x Rethink Robotics Electric Parallel Gripper
- Table
- Golf Balls
- Segmented Tray [4x3]
For this example we will use the Left arm (Baxter's Left) and further positional instructions will be based on this. It is entirely possible to modify the parameters of this example to utilise the Right arm.
Attach the Electric Parallel Gripper to Baxter's Left arm and fit the 'short', 'narrow' fingers in position '2', with flat rubber fingertips added.
Camera - Workspace Relationship
The positions of the golf balls and segmented tray must be found with sufficient accuracy for the arm to pick up the golf balls and place them in the segmented tray. Analysing Baxter's hand camera images will give the angles from the camera to the balls and the tray. If the distance of the arm to the table is known and the pose of the arm is known the objects position relative to Baxter can be determined.
Once a golf ball's position is known the arm can be used to pick up the the ball and place it in the segmented tray.
These workspace coordinates are in relation to Baxter's Base Reference Frame, this is a Cartesian coordinate system in metres that is used by Baxter's Forward and Inverse Kinematics Solvers to relate the pose of Baxter's limbs to the workspace.
Camera Calibration Factor
In order to use Baxter's camera to find the position of an object it is necessary to know the distance from the camera to an object and the width of a pixel at that distance. The following experiment was performed to find a camera calibration factor: The width of a pixel at one metre.
The image alone can only give the angle of an image point:
A target was prepared consisting of 24 2cm squares spaced 4cm apart in a 6 by 4 grid. This was placed at varying distances from a camera and the images analysed to find the centre of each square in pixel units.
Each image was converted to a grey scale image. An intensity threshold value used to convert the grey scale image to a black and white image and any black areas touching the image removed. An area threshold was used to remove small black areas in the centre of the image to leave what should be the target squares. The squares were converted to grey as centre of each target square was found and the centres marked with a circular disk to produce the image below:
Analysis of the results gave a camera calibration factor of 2.5mm per pixel at 1 metre.
Image pixel to Workspace coordinate conversion
All arm movements can be performed with Baxter's arm pointing vertically down at the table. This simplifies the conversion of image pixel coordinates to Baxter workspace coordinates.
Knowing the pose of Baxter's arm, the camera calibration factor and the height above the table pixel values can be converted to Baxter coordinates (relative to the gripper pinch point) using the following formula:
B = (Pp – Cp) * cc * d + Bp + Go
where:
- B = Baxter coordinates
- Pp = pixel coordinates
- Cp = centre pixel coordinates
- Bp = Baxter pose
- Go = gripper offset
- cc = camera calibration factor
- d = distance from table
Lines 201 to 207 CHECK convert an image pixel's coordinates to Baxter workspace coordinates.
The inverse function can be used to convert Baxter coordinates to pixel coordinates (lines 194 to 200 CHECK).
This technique can be improved to allow for any angle that the camera is looking at the table.
d is found using the infra red range sensor on Baxter's wrist. A calibration program was written to find the distance of the table from a known pose (looking down over the table). This should be used with a clear table as objects on the table can give a misleading value. This setup program should be used prior to running the example. The setup.dat file can be manually edited if needed.
Locating the Segmented Tray in the workspace
If Baxter's arm is placed over the region of the table where the segmented tray is expected to be it's arm camera should produce an image of the segmented tray. The tray is expected to be on the same side as the arm used (in this case the Left [remember, Baxter's Left])
This image can then be analysed to find the segmented tray's coordinates in the workspace.
Lines 150 to 193 CHECK are subroutines that handle parameter setting, opening and closing of the cameras.
Lines 280 to 311 CHECK handle subscription to the cameras.
The Canny Edge Detector is a simple technique to find the edges of objects where there is a high contrast between the objects and the background. We are using the OpenCV implementation. The Canny image of this camera feed is shown below.
The Canny image show some bounded regions, notable some golf balls and the segmented tray. Note that one of the gripper fingers obscures part of the tray. As the segmented tray is the largest bounded region if the bounded regions can be isolated and the largest area selected the outline of the tray will have been found.
To find the bounded regions the outer region of the Canny image is flood filled with white pixels (lines 257 to 279) and the areas of the remaining bounded regions calculated. All small areas and all but the largest bounded region are flooded with white pixels (lines 227 to 256). If there is a large bounded area left it is assumed to represent the segmented tray.
If there is no bounded area, the arm position is dithered (Lines 524 to 530) CHECK and a new image evaluated. Upon finding a bounded area the centre of the area is found through averaging the pixel coordinates and the arm is moved towards the centre of this area. This is performed iteratively until the displacement is below a threshold value. This improves the accuracy of the calculated tray position. The camera has a clear view of the tray so the gripper does not obscure part of the tray and the camera calibration is more accurate in the centre of the image.
canny_it (lines 531 to 564 CHECK) control the search for the tray and calls itself repeatedly until the centre of the tray has been found to within the required tolerance.
Evaluating Tray Orientation and Interpolating 'Place' Locations
A good indication of the position of the bottom left corner of the egg tray is given by the left most pixel in the bounded area and the position of the bottom right corner is given by the lowest pixel in the bounded area (lines 612 to 639). The coordinates of the two corners and the coordinates of the centre of the tray can be used to calculate the position of the other two corners (lines 653 to 665) and the orientation of the tray (lines 567 to 578).
Given two corners C1 and C2 and the centre M of a rectangle the other two corners are given by the vector equations:
- C3 = 2 * M – C1
- C4 = 2 * M – C2
The segmented tray can hold 12 golf balls, in a 3x4 pattern. The lengths of the sides of the tray will give the orientation of the tray (lines 567 to 578 CHECK):
- If (C1 – C2).(C1 – C2) > (C2 – C3).(C2 – C3) then C1 -> C2 is the long side.
- If (C1 – C2).(C1 – C2) < (C2 – C3).(C2 – C3) then C2 -> C3 is the long side.
If C1 -> C2 is the long side the egg places are given by (lines 579 to 598 CHECK):
- C1 + (2 * i – 1) * V1 + (2 * j – 1) * V2
where:
- V1 = (C2 – C1) / 8 i = {1, 2, 3, 4}
- V2 = (C3 – C2) / 6 j = {1, 2, 3}
Locating the Golf Balls
The golf balls are round so the Hough circles algorithm is a suitable technique for locating them. The Hough circles algorithm looks for potential circles in gray scale intensity gradient images. For each pixel in the image and a range of radii it considers each pixel that lies on the radius and if sufficient pixels are of high intensity claims a circle.
If one of Baxter's arms is placed over the golf balls the camera image should show the golf balls. Applying Hough circles to this image to find circles of roughly the right size to indicate the presence of golf balls and superimposing the circles on the original image shows the positions of some of the golf balls (lines 380 to 425 CHECK).
Selecting the left most ball in the image as the next candidate to transfer to the egg tray helps to avoid selecting balls that have already been transferred to the egg tray and should select a ball on the edge of the cluster (lines 328 to 337 CHECK).
Moving the arm over the selected ball and applying Hough circles to the new image may find a better candidate ball.
The Hough circles algorithm finds most if not all of the golf balls in the image. The minimum and maximum radius parameters were adjusted to try and maximise the number of balls found and reduce the number of false readings. False readings could occur when:
- The camera view strayed over the edge of the table.
- The algorithm found balls in the tray.
- The algorithm detected circles in the structure of the tray.
An exclusion zone was added to the golf ball selection routine to help prevent golf balls and artifacts in the egg tray from being considered for selection. Calculating the egg tray exclusion zone in pixels from the egg tray position in Baxter coordinates was prone to error. A simple exclusion of all centres within a band on the right side of the image proved more successful. Both exclusion techniques were used (lines 404 to 414 and 372 to 378 CHECK).
Occasionally there was indecision about which ball to select. Baxter would select one ball and move towards it. Then it would decide that another ball should be selected and move towards that ball. Once close to the second ball it would decide that the first ball should be selected. In this way it would hunt backwards and forwards between the two balls. This was caused be the two balls having similar left right coordinates and their calculated centres shifting slightly with a change in viewing angle. This indecision was avoided by changing the selection criteria to (lines 338 to 344 CHECK):
- If the left most ball is significantly to the left of the others balls select the left most ball .
- Otherwise if the left most ball is below the second most left ball select the right most ball .
- Otherwise select the second most left ball.
Baxter's arm is iteratively moved over the selected ball and the image analysed until the arm is above the selected ball to within a given tolerance.
'Picking' the Golf Balls
Locating a golf ball to transfer to the tray leaves Baxter's arm above the golf ball. The displacement needed to lower the arm over is easily calculated.
With a few widely spaced golf balls on the table picking up a golf ball presents no problems. However with 12 balls on the table it is likely that one of the gripper arms will touch another ball and knock it sideways. This is only a problem if a golf ball is moved out of the field of view or Baxter's reach.
There are a number of possible remedies:
- Slow down Baxter's arm movements, especially when close to the golf balls.
- Analyse the neighbourhood of the selected golf ball and rotate the gripper to the best angle to minimise disruption of neighbouring balls.
Baxter's arm movements were slowed from half speed to one tenth speed when moving to and from the table to pick up a ball.
The angle between the selected ball and it's nearest neighbour was calculated and the grippers set at a right angle to this angle when picking up the selected ball (lines 345 to 371 CHECK). It was found that if the grippers are rotating as the arm descends they are more likely to hit a neighbouring golf ball as the arm descends than if they are rotated before picking up a golf ball.
Further improvements in the gripper angle could be achieved by considering all neighbours within a radius of the selected ball and finding the best compromise angle for the gripper.
Rotating the gripper and moving slowly results in minimal disturbance of neighbouring golf balls. Having gripped a golf ball the ball is lifted vertically and transferred to a position a little above the next free space in the tray and dropped.
Final Thoughts
This example should have given you a basic understanding of how you can link image inputs with actuation in the workspace and some basic techniques that can be used to achieve this. As previously stated this example is intentionally simplified for undergraduate lab session use and many aspects of this solution can be improved.
Code
Installation
Create a package 'activerobots'
cd ~/ros_ws/src catkin_create_pkg activerobots
Create src directory
cd ~/ros_ws/src/activerobots mkdir src
Unzip the archive into the src directory
Give execute permissions
cd ~/ros_ws/src/activerobots/src chmod +x golf.py chmod +x golf_setup.py
Use
cd ~/ros_ws; ./baxter.sh
Run the setup program with a clear table to evaluate the height of your worksurface
rosrun activerobots golf_setup.py
Run the main program
rosrun activerobots golf.py
License / Disclaimer
Licensed for Educational use only.
Copyright (c) 2013-2014, Active Robots Ltd All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of Active Robots nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
WIP
This page is under construction