You’re reading an older version of the Slamcore SDK documenation. The latest one is 23.04.

Multi-Agent Localisation

Warning

Multi-Agent Localisation is experimental.

The tutorial for Localisation Mode takes you through the step to create a master point-cloud map, save it and then calculate the live position of a robot in the reference frame of this map. Because this point-cloud map is created using the naturally occurring features of the environment, it is unique to the space and not the machine. This means that any machine with compatible hardware will be able to localise itself using the same pre-built point-cloud. Because the positioning software only uses the passive stereo cameras and IMU from the RealSense, there is technically no limit to the number of machines that can operate simultaneously in the same environment.

The process for multi-agent localisation is the same as described in the tutorial for Localisation Mode. The only difference is that once the session file for the point-cloud map is saved, you can now share with any machine with compatible hardware with the SLAMcore software installed.

Step 1 - Create a Master Configuration File

You are able to change some of the core parameters for the system using a configuration file. Create a new file multi_agent_master.json in a convenient directory, e.g. ~/slamcore/custom/multi_agent_master.json.

Edit the file by running this in a terminal window:

$ gedit ~/slamcore/custom/multi_agent_master.json

Edit or paste the following text into the editor:

{
    "Version": "1.0.0",
    "Base":
    {
        "ProfileName": "multi_agent_master"
    },
    "Position":
    {
        "PositioningMode": "SLAM",
        "Frontend":
        {
            "NumKeypoints": 300
        }
    }
}

The ProfileName parameter can be set to any name that you wish to be displayed on the SLAMcore Visualiser when the configuration file is being used.

The positioning mode is controlled by the PositioningMode parameter and can be set to SLAM or ODOMETRY_ONLY. Please note that we will use the same parameter settings for this mode as with Localisation mode. Save the text file.

You can also use the configuration file to set other parameters which will affect the performance of the system. For example, we will use this config file to set the number of features that will be detected on each frame and used to triangulate the position of the sensor. The number of features can be varied by adjusting the NumKeypoints parameter. This can be set between 10 and 500. The higher the number the better the accuracy and robustness of the system but computational resource will also increase. As this step does not need to operate in real-time, you can choose a higher number. We recommend >300.

Step 2 - Create the Offline Master Point-cloud

Step 2.1 - Launch the slamcore_visualiser Tool

Launch the tool using the main dataset you have captured of the test environment:

$ slamcore_visualiser dataset -u <path/to/top-level/folder/for/dataset> -c ~/Desktop/multi_agent_master.json

This will open the SLAMcore Visualiser tool:

_images/visualiser01.png

Fig. 51 SLAMcore Visualiser Opening Screen

Step 2.2 - Generate the Offline Master Point-cloud

Click the Start button to start processing the dataset.

_images/visualiser_slam_buttons.png

The tool will now process the dataset to create a point-cloud of the space.

_images/multisession_pointcloud.png

Fig. 52 Example point cloud

When the dataset has been fully processed, you will see the following message:

_images/visualiser_end_of_dataset.png

Fig. 53 Message when dataset finished processing

Step 2.3 - Save the Point-cloud

Now save the point-cloud by clicking the Save button:

_images/visualiser_session_buttons.png

You will be asked where you want to store this file.

_images/visualiser_progressbar_cropped.png

Fig. 54 Message displayed whilst saving dataset

The point-cloud will be saved as a single .session file which may take a few minutes to an hour depending on how large the environment and how many points have been mapped.

Step 3 - Copy the Session Map File to any Compatible Machine

The point cloud is stored as a small, single session file. This can be found in the location you specified in the previous step. You can copy this file to any compatible robot that meets our Software Requirements, with SLAMcore software installed and set up (see Getting Started and Setting up a Camera).

Step 4 - Run Localisation using a Pre-built Point-cloud

You can test this system using pre-recorded datasets but to demonstrate this mode we will use a live sensor feed.

Step 4.1 - Launch the Positioning Tool on any Compatible Machine

You will need to decide how many features you wish to track per frame during the evaluation, and change the configuration file accordingly. This does not need to be the same as the settings you used to create the original point-cloud. Here real-time operation may be important so we would recommend setting NumKeypoints to 100. On the machine/robot where you will be running the software with live sensor feed, make a copy of the multi_agent_deploy.json file you created earlier and name it multi_agent_deploy.json.

Edit the file by running this in a terminal window:

$ gedit ~/slamcore/custom/multi_agent_deploy.json

Edit or paste the following text into the editor and save it.

{
    "Version": "1.0.0",
    "Base":
    {
        "ProfileName": "multi_agent_deploy"
    },
    "Position":
    {
        "PositioningMode": "SLAM",
        "Frontend":
        {
            "NumKeypoints": 100
        }
    }
}

To launch the software, run in the terminal window:

$ slamcore_visualiser dataset -u <path/to/evaluation/dataset>  -c ~/slamcore/custom/localisation_mode_eval.json

This will launch the SLAMcore Visualiser tool.

_images/visualiser01.png

Fig. 55 SLAMcore Visualiser Opening Screen

Step 4.2 - Load the Point-cloud to Use for Live Localisation

Before clicking start, you will need to load the saved point-cloud that you copied to this new machine. Click the Load button and select the session file you wish to use.

_images/visualiser_session_buttons.png

Step 4.3 - Run the System Live

Click the Start button to start processing the live sensor feed:

_images/visualiser_slam_buttons.png

As before, it may take a few seconds for the system to recognise its location. When this happens you will see the 6DoF pose estimation marker update in real-time. If the system is not able to localise, the 6DoF axis will remain stationary even when you move the sensor. This can normally be fixed by moving the sensor in a figure of eight.

_images/visualiser_multisession_pointcloud.png

Fig. 56 View when system is localising in the saved point-cloud

Note

The system is very tolerant to both lighting and structural change. If there is an extreme difference in the conditions from when the original dataset was captured, then this mode may struggle to estimate a position. To resolve this you will need to capture a new master dataset of the full environment, generate a point-cloud from this dataset and save this new point-cloud.