Camera Calibration

Learn how to calibrate cameras.
Ysobel Sims GitHub avatar
Updated 28 Nov 2023

Camera calibration determines optimal parameters for the cameras. These parameters include the focal length and the transform from one camera to the other. More on the parameters being optimised for camera calibration can be found on the input page.

The calibration requires two steps, creating the nbs recording and using it to find the camera parameters.

Get the Data

  1. Change test/camera.role to include support::logging::DataLogging

  2. Build using ./b build and then install onto a robot using ./b install n<number>. More on building can be found on the Getting Started page or the Build System page.

  3. On the robot, enable compressed image recording in config/DataLogging.yaml. To edit the file, run nano config/DataLogging.yaml. Make sure message.output.CompressedImage is true (it should be by default).

  4. Ensure the Left and Right camera serial numbers are correct in their respective configuration files (Left.yaml and Right.yaml). The configuration files are found in the Camera module folder, with separate directories for each robot.

    The serial numbers can be retrieved by first running lsusb and finding the bus and device numbers for the FLIR/Point Grey cameras. Then run lsusb -s <bus number>:<device number> -v to find the serial numbers.

    Next you need to figure out which serial number is left and which is right. Change the serial number for one camera to an incorrect number (this ensures it's not found when running test/camera). Enable message.output.CompressedImage in NetworkForwarder.yaml. Run ./test/camera and test which camera is working by covering one camera and seeing the resulting image in the NUsight vision tab. Alternatively, you could unplug one camera rather than change the serial number. If the serial number is on the wrong camera configuration file, switch them.

  5. Check the focus of the lenses using the NUsight vision tab. If it is not sharp, focus the camera. This involves pulling the camera out from the head, still plugged in, and loosening the three grub screws. Twist until the camera is focused.

  6. Verify that the extrinsics look correct in NUsight. The extrinsics are the transform from the last neck motor to the camera. This is retrieved from the robot's URDF model, but differences in the real robots may result in required offsets. Offset values for both pitch and roll are in the camera configuration files. The offsets are in radians.

    1. Ensure NetworkForwarder.yaml has a message.output.CompressedImage value greater than 0.
    2. Stand the robot up with ./scriptrunner Stand.yaml
    3. Face the robot towards a straight horizontal line, such as a line of bricks on a brick wall.
    4. Run ./test/visualmesh and switch to the vision tab in NUsight

    NUsight should show a blue horizontal line. Adjust the offsets until the line is drawn at a constant height (the height of the cameras) along the wall.

  7. Run ./test/camera on the robot and hold up a board as shown in the below image. There is an appropriate board in the NUbots laboratory. Move the board around to cover the robot's view over time, taking into account that the lenses have a 180180^{\circ} field of view. Move the board around at different distances and angles.

    A white board with black circles in rows.
    Asymmetric circles grid used for calibration.
    A person holding a board in the middle of the photo
    A person holding a board at the bottom of the photo
    A person holding a board to the left
    A person holding a board to the right
    Photos from the robot's cameras of a person moving around a board for camera calibration.
  8. Stop the binary and copy the nbs file created into the NUbots directory on your computer.

    1. To stop the program running, hit Ctrl + c.

    2. Discover the name of the log file created. The file is in the recordings/test/camera/ folder on the robot. The name corresponds to the date and time it was created, according to the robot. Run ls recordings/test/camera/ to list all logs.

    3. (optional) Rename the log file, making it easier to copy across to the computer. Change the name with the command mv <old path> <new path>.

    4. Run the command scp <robot address>:<file path> . from the NUbots directory on your computer, not on the robot.

    5. The robot can be turned off at this point. The recording you just made should be on your computer in the NUbots directory. Check that it is before continuing to the next section.

Run the Optimisation

  1. Run the following commands to install the dependencies of the camera calibration tool if you have not done this before

    sudo apt update
    sudo apt install protobuf-compiler libprotobuf-dev
    sudo -H pip3 install --upgrade pip
    sudo -H pip3 install tensorflow opencv-contrib-python ruamel.yaml
  2. Calibrate the cameras by running

    ./b nbs calibrate_cameras <nbs file name> -c <camera config folder>

    <nbs file name> is the name of the nbs file you just created. <camera config folder> is the path to the folder with the two camera config files Left.yaml and Right.yaml. These exist in ./module/input/Camera/data/config/<robot name>/Cameras/.

    The calibration routine changes the values in the camera configuration files.

  3. Verify these values by running vision and checking the output in NUsight.

    You should see the same blue line as before, correctly aligned with the wall. If the line is not aligned, you will need to adjust the camera offsets.

    Run the test/localisation role and check that the field lines in the localisation view are parallel or perpendicular to each other. If the perspective does not look right, then the cameras are not calibrated correctly.

  4. Repeat this process with other robots if needed.

  5. Commit these changes in a new branch on GitHub and make a Pull Request. Read the Git guide if you are unsure about this step.

NUbots acknowledges the traditional custodians of the lands within our footprint areas: Awabakal, Darkinjung, Biripai, Worimi, Wonnarua, and Eora Nations. We acknowledge that our laboratory is situated on unceded Pambalong land. We pay respect to the wisdom of our Elders past and present.
Copyright © 2024 NUbots - CC-BY-4.0
Deploys by Netlify