Program Listing for File os_point.h

Return to documentation for file (include/ouster_ros/os_point.h)

#pragma once

#include <pcl/point_types.h>

namespace ouster_ros {

// The default/original representation of the point cloud since the driver
// inception. This shouldn't be confused with Point_LEGACY which provides exact
// mapping of the fields of Ouster LidarScan of the Legacy Profile, copying
// the same order and using the same bit representation. For example, this Point
// struct uses float data type to represent intensity (aka signal); however, the
// sensor sends the signal channel either as UINT16 or UINT32 depending on the
// active udp lidar profile.
struct EIGEN_ALIGN16 _Point {
    PCL_ADD_POINT4D;
    float intensity;        // equivalent to signal
    uint32_t t;
    uint16_t reflectivity;
    uint16_t ring;          // equivalent to channel
    uint16_t ambient;       // equivalent to near_ir
    uint32_t range;
    EIGEN_MAKE_ALIGNED_OPERATOR_NEW
};

struct Point : public _Point {

    inline Point(const _Point& pt)
    {
      x = pt.x; y = pt.y; z = pt.z; data[3] = 1.0f;
      intensity = pt.intensity;
      t = pt.t;
      reflectivity = pt.reflectivity;
      ring = pt.ring;
      ambient = pt.ambient;
      range = pt.range;
    }

    inline Point()
    {
      x = y = z = 0.0f; data[3] = 1.0f;
      intensity = 0.0f;
      t = 0;
      reflectivity = 0;
      ring = 0;
      ambient = 0;
      range = 0;
    }

    inline const auto as_tuple() const {
        return std::tie(x, y, z, intensity, t, reflectivity, ring, ambient, range);
    }

    inline auto as_tuple() {
        return std::tie(x, y, z, intensity, t, reflectivity, ring, ambient, range);
    }

    template<size_t I>
    inline auto& get() {
        return std::get<I>(as_tuple());
    }
};

}   // namespace ouster_ros

// clang-format off

// DEFAULT/ORIGINAL
POINT_CLOUD_REGISTER_POINT_STRUCT(ouster_ros::Point,
    (float, x, x)
    (float, y, y)
    (float, z, z)
    (float, intensity, intensity)
    (std::uint32_t, t, t)
    (std::uint16_t, reflectivity, reflectivity)
    (std::uint16_t, ring, ring)
    (std::uint16_t, ambient, ambient)
    (std::uint32_t, range, range)
)

// clang-format on