Skip to main content

Protobuf Python bindings for A42 sensor data

Project description

📦 A42 Protobuf Bindings (a42-proto)

Dieses Python-Paket enthält die Protobuf-Bindings für Sensordaten im A42-Format. Es erlaubt das einfache Einlesen und Verarbeiten von LiDAR-Scans und zugehörigen Objektinformationen.


🔽 Datendownload

👉 KIT Sync & Share Download


📥 Installation

pip install a42-proto

🧪 Beispielskripte


📄 Data Structure

Frame

  • frame_timestamp_ns – global timestamp in nanoseconds
  • lidars[] – list of LidarScan messages
  • frame_id - unique identifier for the frame

Example:

first_scan = frame.lidars[0]

LidarScan

  • laser_name – sensor identifier (LaserName enum)
  • scan_timestamp_ns – timestamp of this scan (ns)
  • pointcloud – LiDAR point cloud (PointCloud)
  • calibration – sensor calibration (SensorCalibration)
  • object_list[] – detected objects (ObjectBBox)

Example:

objects = scan.object_list[0]

PointCloud

All fields are stored as byte arrays and must be decoded into NumPy arrays.

  • cartesian – XYZ coordinates (float32, shape N×3)
  • intensity – intensity values (uint16)
  • ambient – ambient light / signal quality (uint16)
  • velocity – point-wise velocity (float32)
  • reflectivity – reflectivity values (uint16)
  • timestamp_offset – per‑point timestamp offset (uint64 ns)
  • channel_id – channel index (uint16)

Example decoding:

import numpy as np
xyz = np.frombuffer(pc.cartesian, dtype=np.float32).reshape(-1, 3)
intensity = np.frombuffer(pc.intensity, dtype=np.uint16)

ObjectBBox

  • id – object ID
  • timestamp_ns – timestamp of the object (ns)
  • position {x,y,z} – center position
  • dimension {x,y,z} – object size
  • orientation {x,y,z,w} – quaternion orientation
  • velocity {x,y,z} – velocity vector
  • pointcloud – sub‑pointcloud inside the bounding box
  • obj_class – semantic class
  • obj_class_score – classification confidence

Example:

pos = obj.position

SensorCalibration

  • sensor_name – sensor identifier
  • extrinsic[] – 4×4 row‑major extrinsic matrix
  • vertical_fov, horizontal_fov – field of view
  • vertical_scanlines, horizontal_scanlines – resolution
  • horizontal_angle_spacing – angle spacing (deg)
  • beam_altitude_angles[] – altitude angles
  • beam_azimuth_angles[] – azimuth angles
  • frame_mode – scan mode
  • scan_pattern – scan pattern identifier

Example:

vfov = scan.calibration.vertical_fov

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

a42_proto-0.4.2.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

a42_proto-0.4.2-py3-none-any.whl (5.5 kB view details)

Uploaded Python 3

File details

Details for the file a42_proto-0.4.2.tar.gz.

File metadata

  • Download URL: a42_proto-0.4.2.tar.gz
  • Upload date:
  • Size: 4.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.18

File hashes

Hashes for a42_proto-0.4.2.tar.gz
Algorithm Hash digest
SHA256 00aa4f51236ccb6a26de92e9601dc1b2db1fd3ff9e6954f72750b0f8bbb70714
MD5 3eba116fa054f707a983d854a6998c7f
BLAKE2b-256 42e7e74c89c38cc6287337b2f7705a48259d22859fe8adfe8718a9b50a344a9a

See more details on using hashes here.

File details

Details for the file a42_proto-0.4.2-py3-none-any.whl.

File metadata

  • Download URL: a42_proto-0.4.2-py3-none-any.whl
  • Upload date:
  • Size: 5.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.18

File hashes

Hashes for a42_proto-0.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1406ac6e0d83637cdc8c60371d3cabfe759e5653fb02db8843fbc1a7ffaa61ab
MD5 7b8745ac026671a96df9907d0a986102
BLAKE2b-256 ff7897ac6ff31ba974154c29318bd6b572b950835c686c55b9b5992e62a6068c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page