ReUseX  0.0.5
3D Point Cloud Processing for Building Reuse
Loading...
Searching...
No Matches
Surfel.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2025 Povl Filip Sonne-Frederiksen
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5#pragma once
6
7#include "reusex/types.hpp"
8
9#include <Eigen/Geometry>
10
11namespace reusex::geometry {
12
23 int node_id = -1;
26 Eigen::Affine3f world_pose = Eigen::Affine3f::Identity();
27};
28
29} // namespace reusex::geometry
typename CloudN::Ptr CloudNPtr
typename Cloud::Ptr CloudPtr
A sensor frame represented as a surfel set for joint registration.
Definition Surfel.hpp:22
CloudNPtr normals
pcl::Normal in optical frame (unit, facing camera)
Definition Surfel.hpp:25
CloudPtr points
pcl::PointXYZRGB in optical frame
Definition Surfel.hpp:24
Eigen::Affine3f world_pose
Definition Surfel.hpp:26