Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Import published PointCloud2 to OSF #1

Draft
wants to merge 4 commits into
base: ros2
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
111 changes: 111 additions & 0 deletions scripts/pcl_to_osf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
#!/usr/bin/env python

# Software License Agreement (BSD License)
#
# Copyright (c) 2024, Ouster, Inc.
# All rights reserved.

"""
A module that shows how to subscribe to ouster point cloud and utililze pcl filters.
Author: Ussama Naal
"""

import numpy as np
import rclpy
from rclpy.node import Node
from rclpy.qos import QoSProfile, ReliabilityPolicy, DurabilityPolicy, LivelinessPolicy
from sensor_msgs.msg import PointCloud2
import point_cloud2 as pc2
import pcl
from std_msgs.msg import String
from ouster.sdk.client import SensorInfo, ChanField, FieldType, FieldClass, LidarScan, destagger

class PointCloudSubscriber(Node):

def __init__(self):
super().__init__('point_cloud_subscriber')

qos_profile = QoSProfile(
reliability=ReliabilityPolicy.RMW_QOS_POLICY_RELIABILITY_RELIABLE,
durability=DurabilityPolicy.RMW_QOS_POLICY_DURABILITY_TRANSIENT_LOCAL,
liveliness=LivelinessPolicy.RMW_QOS_POLICY_LIVELINESS_AUTOMATIC,
depth=5
)
self.metadata_sub = self.create_subscription(
String,
'/ouster/metadata',
self.metadata_callback,
qos_profile=qos_profile)

self._scan_ctr = 0

def metadata_callback(self, metadata):
import ouster.sdk.osf as osf
out_path = "sybmotic.osf"
Samahu marked this conversation as resolved.
Show resolved Hide resolved
self._sensor_info = SensorInfo(s=metadata.data)
metadata = SensorInfo(metadata.data)
self._writer = osf.Writer(out_path, self._sensor_info)

qos_profile = QoSProfile(
reliability=ReliabilityPolicy.RMW_QOS_POLICY_RELIABILITY_BEST_EFFORT,
matthew-lidar marked this conversation as resolved.
Show resolved Hide resolved
durability=DurabilityPolicy.RMW_QOS_POLICY_DURABILITY_VOLATILE,
liveliness=LivelinessPolicy.RMW_QOS_POLICY_LIVELINESS_AUTOMATIC,
depth=5
)
self.subscription = self.create_subscription(
PointCloud2,
'/ouster/points',
self.point_cloud_callback,
qos_profile=qos_profile)

def point_cloud_callback(self, msg):
if self._scan_ctr > 1740:
return

ts = msg.header.stamp
scan_ts = int(ts.sec * 1e9 + ts.nanosec)
scan = LidarScan(128, 1024)
Samahu marked this conversation as resolved.
Show resolved Hide resolved

data = pc2.read_points(msg, field_names=["range"])
points = np.array(list(data), dtype=np.uint32)
points = points.reshape((128, 1024))
points = destagger(self._sensor_info, points, inverse=True)
scan.field(ChanField.RANGE)[:] = points

data = pc2.read_points(msg, field_names=["reflectivity"])
points = np.array(list(data), dtype=np.uint16)
points = points.reshape((128, 1024))
points = destagger(self._sensor_info, points, inverse=True)
scan.field(ChanField.REFLECTIVITY)[:] = points

data = pc2.read_points(msg, field_names=["ambient"])
points = np.array(list(data), dtype=np.uint16)
points = points.reshape((128, 1024))
points = destagger(self._sensor_info, points, inverse=True)
scan.field(ChanField.NEAR_IR)[:] = points

data = pc2.read_points(msg, field_names=["intensity"])
points = np.array(list(data), dtype=np.float32)
points = points.reshape((128, 1024))
points = points.astype(np.uint32)
points = destagger(self._sensor_info, points, inverse=True)
scan.field(ChanField.SIGNAL)[:] = points

self._writer.save(0, scan, scan_ts)

self._scan_ctr += 1
print("process scan", self._scan_ctr)
if self._scan_ctr > 1740:
self._writer.close()
print("done")

def main(args=None):
rclpy.init(args=args)
point_cloud_subscriber = PointCloudSubscriber()
rclpy.spin(point_cloud_subscriber)
point_cloud_subscriber.destroy_node()
rclpy.shutdown()


if __name__ == '__main__':
main()