Correct comment (#948)
parent
97c039bab2
commit
a2219cb2fc
|
@ -31,10 +31,11 @@ namespace sensor {
|
||||||
// For 2D points, the third entry is 0.f.
|
// For 2D points, the third entry is 0.f.
|
||||||
typedef std::vector<Eigen::Vector3f> PointCloud;
|
typedef std::vector<Eigen::Vector3f> PointCloud;
|
||||||
|
|
||||||
// Stores 3D positions of points with their measurement time in the fourth
|
// Stores 3D positions of points with their relative measurement time in the
|
||||||
// entry. Time is in seconds, increasing and relative to the moment when
|
// fourth entry. Time is in seconds, increasing and relative to the moment when
|
||||||
// 'points[0]' was acquired. If timing is not available, all fourth entries
|
// the last point was acquired. So, the fourth entry for the last point is 0.f.
|
||||||
// are 0.f. For 2D points, the third entry is 0.f and the fourth entry is time.
|
// If timing is not available, all fourth entries are 0.f. For 2D points, the
|
||||||
|
// third entry is 0.f (and the fourth entry is time).
|
||||||
typedef std::vector<Eigen::Vector4f> TimedPointCloud;
|
typedef std::vector<Eigen::Vector4f> TimedPointCloud;
|
||||||
|
|
||||||
struct PointCloudWithIntensities {
|
struct PointCloudWithIntensities {
|
||||||
|
|
Loading…
Reference in New Issue