Using the Positional Tracking API

Open in ClaudeOpen in ChatGPT

Positional Tracking Configuration

To configure positional tracking, use InitParameters at initialization and RuntimeParameters to change specific parameters during use.

// Set configuration parameters
InitParameters init_params;
init_params.camera_resolution = RESOLUTION::HD720; // Use HD720 video mode (default fps: 60)
init_params.coordinate_system = COORDINATE_SYSTEM::RIGHT_HANDED_Y_UP; // Use a right-handed Y-up coordinate system
init_params.coordinate_units = UNIT::METER; // Set units in meters

Enabling Positional Tracking

After opening the camera, enable positional tracking using enablePositionalTracking() with default PositionalTrackingParameters.

// Enable positional tracking with default parameters
sl::PositionalTrackingParameters tracking_parameters;
err = zed.enablePositionalTracking(tracking_parameters);

You can disable tracking anytime using disablePositionalTracking().

For more information on positional tracking settings, refer to the Positional Tracking Settings page.

Getting Pose

The camera position gets updated with every new frame.

To retrieve pose data, use getPosition() after grabbing a frame.

In the following example, we extract the pose relative to the World Frame and retrieve the translation and orientation quaternion values using getTranslation() and getOrientation().

sl::Pose zed_pose;
if (zed.grab() == ERROR_CODE::SUCCESS) {
// Get the pose of the camera relative to the world frame
POSITIONAL_TRACKING_STATE state = zed.getPosition(zed_pose, REFERENCE_FRAME::WORLD);
// Display translation and timestamp
printf("Translation: tx: %.3f, ty: %.3f, tz: %.3f, timestamp: %llu\r",
zed_pose.getTranslation().tx, zed_pose.getTranslation().ty, zed_pose.getTranslation().tz, zed_pose.timestamp);
// Display orientation quaternion
printf("Orientation: ox: %.3f, oy: %.3f, oz: %.3f, ow: %.3f\r",
zed_pose.getOrientation().ox, zed_pose.getOrientation().oy, zed_pose.getOrientation().oz, zed_pose.getOrientation().ow);
}

The class Pose is used to store camera position and additional information such as timestamp and confidence. Since position is always relative to a reference, it is important to set the coordinate frame that will be used as base. To get camera position in real world space, use REFERENCE_FRAME::WORLD, otherwise use REFERENCE_FRAME::CAMERA to get the change in pose relative to the last position (odometry).

By default, the pose of the left eye of the camera is returned. To get the pose at the center of the camera, see Frame Transforms. You can also retrieve a translation, orientation or rotation matrix using getTranslation(), getOrientation() and getRotation().

Getting Velocity

The velocity gets updated with every new frame. To retrieve velocity data, use getPosition() after grabbing a frame. In the following example, we extract the velocity relative to the Camera Frame and retrieve the linear and angular velocities along the [x,y,z] axes.

sl::Pose zed_pose;
if (zed.grab() == ERROR_CODE::SUCCESS) {
// Get the pose of the camera relative to the world frame
POSITIONAL_TRACKING_STATE state = zed.getPosition(zed_pose, REFERENCE_FRAME::CAMERA);
// Display linear velocity
printf("Linear Twist: vx: %.3f, vy: %.3f, vz: %.3f, timestamp: %llu\r",
zed_pose.twist[0], zed_pose.twist[1], zed_pose.twist[2], zed_pose.timestamp);
// Display orientation quaternion
printf("Angular Twist: x: %.3f, y: %.3f, z: %.3f, timestamp: %llu\r",
zed_pose.twist[3], zed_pose.twist[4], zed_pose.twist[5], zed_pose.timestamp);
}

Saving an Area Map

#include <sl/Camera.hpp>
#include <iostream>
#include <thread>
int main(int argc, char **argv) {
sl::Camera zed;
sl::InitParameters init_params;
init_params.depth_mode = sl::DEPTH_MODE::NONE;
init_params.coordinate_units = sl::UNIT::METER;
auto status = zed.open(init_params);
if (status != sl::ERROR_CODE::SUCCESS) {
std::cout << "Failed to open ZED: " << status << std::endl;
return -1;
}
// Enable GEN_3 Tracking
sl::PositionalTrackingParameters track_params;
track_params.enable_area_memory = true;
track_params.mode = sl::POSITIONAL_TRACKING_MODE::GEN_3;
status = zed.enablePositionalTracking(track_params);
if (status != sl::ERROR_CODE::SUCCESS) {
std::cout << "Failed to enable tracking: " << status << std::endl;
return -1;
}
// Main Capture Loop — record the space
std::cout << "Move the camera following the mapping procedure..." << std::endl;
while (true) {
if (zed.grab() == sl::ERROR_CODE::SUCCESS) {
sl::Pose pose;
zed.getPosition(pose);
// Add your exit condition here
if (/* exit condition */ false)
break;
}
}
// Save AREA (ASYNC)
std::string area_file = "environment.area";
status = zed.saveAreaMap(area_file.c_str());
if (status == sl::ERROR_CODE::SUCCESS) {
sl::AREA_EXPORTING_STATE export_state = zed.getAreaExportState();
while (export_state == sl::AREA_EXPORTING_STATE::RUNNING) {
std::this_thread::sleep_for(std::chrono::milliseconds(10));
export_state = zed.getAreaExportState();
}
if (export_state == sl::AREA_EXPORTING_STATE::SUCCESS) {
std::cout << "Successfully saved area map to " << area_file << std::endl;
} else {
std::cout << "Failed to save area map: "
<< sl::toString(export_state).c_str() << std::endl;
}
} else {
std::cout << "Failed to start area save: " << status << std::endl;
}
zed.disablePositionalTracking();
zed.close();
}

Relocalizing within an Area map

// Enable positional tracking with default parameters
sl::PositionalTrackingParameters tracking_parameters;
tracking_parameters.area_file_path = "example.area";
err = zed.enablePositionalTracking(tracking_parameters);

Code Example

For code examples, check out the Tutorial and Sample on GitHub.