|
Point Cloud Library (PCL)
1.11.1
|
Include dependency graph for types.h:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Defines basic non-point types used by PCL.
Definition in file types.h.
Classes | |
| struct | pcl::detail::int_type< Bits, Signed > |
| int_type::type refers to an integral type that satisfies template parameters More... | |
| struct | pcl::detail::int_type< 8, true > |
| struct | pcl::detail::int_type< 8, false > |
| struct | pcl::detail::int_type< 16, true > |
| struct | pcl::detail::int_type< 16, false > |
| struct | pcl::detail::int_type< 32, true > |
| struct | pcl::detail::int_type< 32, false > |
| struct | pcl::detail::int_type< 64, true > |
| struct | pcl::detail::int_type< 64, false > |
Namespaces | |
| pcl | |
| pcl::detail | |
Typedefs | |
| using | pcl::uint8_t = std::uint8_t |
| using | pcl::int8_t = std::int8_t |
| using | pcl::uint16_t = std::uint16_t |
| using | pcl::int16_t = std::int16_t |
| using | pcl::uint32_t = std::uint32_t |
| using | pcl::int32_t = std::int32_t |
| using | pcl::uint64_t = std::uint64_t |
| using | pcl::int64_t = std::int64_t |
| using | pcl::int_fast16_t = std::int_fast16_t |
| template<std::size_t Bits, bool Signed = true> | |
| using | pcl::detail::int_type_t = typename int_type< Bits, Signed >::type |
helper type to use for int_type::type More... | |
| using | pcl::index_t = detail::int_type_t< detail::index_type_size, detail::index_type_signed > |
| Type used for an index in PCL. More... | |
| using | pcl::uindex_t = detail::int_type_t< detail::index_type_size, false > |
Type used for an unsigned index in PCL More... | |
| template<typename Allocator = std::allocator<index_t>> | |
| using | pcl::IndicesAllocator = std::vector< index_t, Allocator > |
| Type used for indices in PCL. More... | |
| using | pcl::Indices = IndicesAllocator<> |
| Type used for indices in PCL. More... | |
Variables | |
| constexpr std::uint8_t | pcl::detail::index_type_size = PCL_INDEX_SIZE |
| number of bits in PCL's index type More... | |
| constexpr bool | pcl::detail::index_type_signed = PCL_INDEX_SIGNED |
| signed/unsigned nature of PCL's index type Please use PCL_INDEX_SIGNED when building PCL to choose a type best suited for your needs. More... | |