Point Cloud Library (PCL)
1.14.1-dev
|
WorldModel maintains a 3D point cloud that can be queried and updated via helper functions. More...
#include </__w/1/s/gpu/kinfu_large_scale/include/pcl/gpu/kinfu_large_scale/world_model.h>
Public Types | |
using | Ptr = shared_ptr< WorldModel< PointT > > |
using | ConstPtr = shared_ptr< const WorldModel< PointT > > |
using | PointCloud = pcl::PointCloud< PointT > |
using | PointCloudPtr = typename PointCloud::Ptr |
using | PointCloudConstPtr = typename PointCloud::ConstPtr |
using | ConditionAndPtr = typename pcl::ConditionAnd< PointT >::Ptr |
using | ConditionOrPtr = typename pcl::ConditionOr< PointT >::Ptr |
using | FieldComparisonConstPtr = typename pcl::FieldComparison< PointT >::ConstPtr |
using | FieldList = typename pcl::traits::fieldList< PointT >::type |
Public Member Functions | |
WorldModel () | |
Default constructor for the WorldModel. More... | |
void | reset () |
Clear the world. More... | |
void | addSlice (const PointCloudPtr new_cloud) |
Append a new point cloud (slice) to the world. More... | |
void | getExistingData (const double previous_origin_x, const double previous_origin_y, const double previous_origin_z, const double offset_x, const double offset_y, const double offset_z, const double volume_x, const double volume_y, const double volume_z, pcl::PointCloud< PointT > &existing_slice) |
Retrieve existing data from the world model, after a shift. More... | |
void | setSliceAsNans (const double origin_x, const double origin_y, const double origin_z, const double offset_x, const double offset_y, const double offset_z, const int size_x, const int size_y, const int size_z) |
Give nan values to the slice of the world. More... | |
void | cleanWorldFromNans () |
Remove points with nan values from the world. More... | |
PointCloudPtr | getWorld () |
Returns the world as a point cloud. More... | |
std::size_t | getWorldSize () |
Returns the number of points contained in the world. More... | |
void | getWorldAsCubes (double size, std::vector< PointCloudPtr > &cubes, std::vector< Eigen::Vector3f, Eigen::aligned_allocator< Eigen::Vector3f > > &transforms, double overlap=0.0) |
Returns the world as two vectors of cubes of size "size" (pointclouds) and transforms. More... | |
WorldModel maintains a 3D point cloud that can be queried and updated via helper functions.
The world is represented as a point cloud.
When new points are added to the world, we replace old ones by the newest ones. This is achieved by setting old points to nan (for speed)
Definition at line 62 of file world_model.h.
using pcl::kinfuLS::WorldModel< PointT >::ConditionAndPtr = typename pcl::ConditionAnd<PointT>::Ptr |
Definition at line 73 of file world_model.h.
using pcl::kinfuLS::WorldModel< PointT >::ConditionOrPtr = typename pcl::ConditionOr<PointT>::Ptr |
Definition at line 74 of file world_model.h.
using pcl::kinfuLS::WorldModel< PointT >::ConstPtr = shared_ptr<const WorldModel<PointT> > |
Definition at line 67 of file world_model.h.
using pcl::kinfuLS::WorldModel< PointT >::FieldComparisonConstPtr = typename pcl::FieldComparison<PointT>::ConstPtr |
Definition at line 75 of file world_model.h.
using pcl::kinfuLS::WorldModel< PointT >::FieldList = typename pcl::traits::fieldList<PointT>::type |
Definition at line 77 of file world_model.h.
using pcl::kinfuLS::WorldModel< PointT >::PointCloud = pcl::PointCloud<PointT> |
Definition at line 69 of file world_model.h.
using pcl::kinfuLS::WorldModel< PointT >::PointCloudConstPtr = typename PointCloud::ConstPtr |
Definition at line 71 of file world_model.h.
using pcl::kinfuLS::WorldModel< PointT >::PointCloudPtr = typename PointCloud::Ptr |
Definition at line 70 of file world_model.h.
using pcl::kinfuLS::WorldModel< PointT >::Ptr = shared_ptr<WorldModel<PointT> > |
Definition at line 66 of file world_model.h.
|
inline |
Default constructor for the WorldModel.
Definition at line 81 of file world_model.h.
void pcl::kinfuLS::WorldModel< PointT >::addSlice | ( | const PointCloudPtr | new_cloud | ) |
Append a new point cloud (slice) to the world.
[in] | new_cloud | the point cloud to add to the world |
Definition at line 47 of file world_model.hpp.
|
inline |
Remove points with nan values from the world.
Definition at line 137 of file world_model.h.
References pcl::removeNaNFromPointCloud().
void pcl::kinfuLS::WorldModel< PointT >::getExistingData | ( | const double | previous_origin_x, |
const double | previous_origin_y, | ||
const double | previous_origin_z, | ||
const double | offset_x, | ||
const double | offset_y, | ||
const double | offset_z, | ||
const double | volume_x, | ||
const double | volume_y, | ||
const double | volume_z, | ||
pcl::PointCloud< PointT > & | existing_slice | ||
) |
Retrieve existing data from the world model, after a shift.
[in] | previous_origin_x | global origin of the cube on X axis, before the shift |
[in] | previous_origin_y | global origin of the cube on Y axis, before the shift |
[in] | previous_origin_z | global origin of the cube on Z axis, before the shift |
[in] | offset_x | shift on X, in indices |
[in] | offset_y | shift on Y, in indices |
[in] | offset_z | shift on Z, in indices |
[in] | volume_x | size of the cube, X axis, in indices |
[in] | volume_y | size of the cube, Y axis, in indices |
[in] | volume_z | size of the cube, Z axis, in indices |
[out] | existing_slice | the extracted point cloud representing the slice |
Definition at line 63 of file world_model.hpp.
References pcl::Filter< PointT >::filter(), pcl::ComparisonOps::GE, pcl::ComparisonOps::LT, pcl::ConditionalRemoval< PointT >::setCondition(), pcl::PCLBase< PointT >::setInputCloud(), and pcl::ConditionalRemoval< PointT >::setKeepOrganized().
|
inline |
Returns the world as a point cloud.
Definition at line 146 of file world_model.h.
void pcl::kinfuLS::WorldModel< PointT >::getWorldAsCubes | ( | double | size, |
std::vector< PointCloudPtr > & | cubes, | ||
std::vector< Eigen::Vector3f, Eigen::aligned_allocator< Eigen::Vector3f > > & | transforms, | ||
double | overlap = 0.0 |
||
) |
Returns the world as two vectors of cubes of size "size" (pointclouds) and transforms.
[in] | size | the size of a 3D cube. |
[out] | cubes | a vector of point clouds representing each cube (in their original world coordinates). |
[out] | transforms | a vector containing the xyz position of each cube in world coordinates. |
[in] | overlap | optional overlap (in percent) between each cube (useful to create overlapped meshes). |
Definition at line 136 of file world_model.hpp.
References pcl::removeNaNFromPointCloud().
|
inline |
Returns the number of points contained in the world.
Definition at line 153 of file world_model.h.
|
inline |
Clear the world.
Definition at line 89 of file world_model.h.
void pcl::kinfuLS::WorldModel< PointT >::setSliceAsNans | ( | const double | origin_x, |
const double | origin_y, | ||
const double | origin_z, | ||
const double | offset_x, | ||
const double | offset_y, | ||
const double | offset_z, | ||
const int | size_x, | ||
const int | size_y, | ||
const int | size_z | ||
) |
Give nan values to the slice of the world.
[in] | origin_x | global origin of the cube on X axis, before the shift |
[in] | origin_y | global origin of the cube on Y axis, before the shift |
[in] | origin_z | global origin of the cube on Z axis, before the shift |
[in] | offset_x | shift on X, in indices |
[in] | offset_y | shift on Y, in indices |
[in] | offset_z | shift on Z, in indices |
[in] | size_x | size of the cube, X axis, in indices |
[in] | size_y | size of the cube, Y axis, in indices |
[in] | size_z | size of the cube, Z axis, in indices |
Definition at line 275 of file world_model.hpp.
References pcl::Filter< PointT >::filter(), pcl::ComparisonOps::GE, pcl::Filter< PointT >::getRemovedIndices(), pcl::ComparisonOps::LT, pcl::ConditionalRemoval< PointT >::setCondition(), pcl::PCLBase< PointT >::setInputCloud(), and pcl::ConditionalRemoval< PointT >::setKeepOrganized().