supereight
|
Functions | |
bool | is_valid (const se::key_t key, const se::scale_t limit=KEY_SCALE_LIMIT) |
Verify if a key is valid. | |
bool | is_valid (const Eigen::Vector3i &coord) |
Verify if a coordinate can be expressed in a key. | |
se::code_t | expand (unsigned long long value) |
Expands a value that can be expressed by <= 19 bits E.g. | |
se::key_t | compact (uint64_t value) |
Compresses a value E.g. | |
bool | encode_key (const Eigen::Vector3i &coord, const se::scale_t scale, se::key_t &key) |
Encodes given coordinates and scale in a key. | |
se::key_t | encode_key (const Eigen::Vector3i &coord, const se::scale_t scale) |
Encodes given coordinates and scale in a key. | |
bool | encode_key (const se::key_t code, const se::scale_t scale, se::key_t &key) |
Encodes given morton code and scale in a key. | |
se::key_t | encode_key (const se::key_t code, const se::scale_t scale) |
Encodes given morton code and scale in a key. | |
void | decode_key (const se::key_t key, Eigen::Vector3i &coord, scale_t &scale) |
Extracts the 3D coordinates and scale from a given key. | |
void | encode_code (const Eigen::Vector3i &coord, se::code_t &code) |
Compute the Morton code for given x,y,z coordinates. | |
se::code_t | encode_code (const Eigen::Vector3i &coord) |
Compute the Morton code for given x,y,z coordinates. | |
void | decode_code (const se::code_t code, Eigen::Vector3i &coord) |
Compute the x,y,z coordinates for a given Morton code. | |
idx_t | code_to_child_idx (const se::code_t code, const scale_t scale) |
Extracts the child index from a Morton code for a given scale. | |
se::code_t | key_to_code (const se::key_t key) |
Reduce a key to only its Morton code. | |
Eigen::Vector3i | key_to_coord (const se::key_t key) |
Reduce a key to only its Morton code. | |
scale_t | key_to_scale (const se::key_t key) |
Reduce a key to only its scale. | |
bool | key_at_scale (const se::key_t key, const se::scale_t scale, se::key_t &key_at_scale) |
For a given key, change the key scale and reduce detail from Morton code up to given the scale. | |
bool | code_at_scale (const se::key_t key, const se::scale_t scale, se::code_t &code_at_scale) |
For a given key, reduce detail from Morton code up to given a scale. | |
void | parent_key (const se::key_t key, se::key_t &parent_key) |
Compute the direct parent key for a given key. | |
se::key_t | block_key (const se::key_t key, const se::scale_t max_block_scale) |
Removes the voxel position detail within a block from a key while maintainig the scale information. | |
se::code_t | block_code (const se::key_t key, const se::scale_t max_block_scale) |
Removes the voxel position detail within a block from a code. | |
void | parent_to_child_key (const se::key_t parent_key, const se::code_t code_at_scale, se::key_t &child_key) |
Compute the child key for a given parent key and child index. | |
bool | is_child (const se::key_t parent_key, const se::key_t child_key) |
Verify if a key is a child of a different key. | |
bool | is_siblings (const se::key_t sibling_1_key, const se::key_t sibling_2_key) |
Verify if two keys encode sibling nodes/voxels. | |
template<Sort = Sort::SmallToLarge> | |
void | sort_keys (std::vector< se::key_t > &keys) |
Sorting template. | |
template<> | |
void | sort_keys< Sort::SmallToLarge > (std::vector< se::key_t > &keys) |
Sorts the keys from smallest to largest. | |
template<> | |
void | sort_keys< Sort::LargeToSmall > (std::vector< se::key_t > &keys) |
Sorts the keys from largest to smallest. | |
template<se::Safe SafeB> | |
void | unique_keys (const std::vector< se::key_t > &keys, std::vector< se::key_t > &unique_keys) |
Filter keys based on the whole key (i.e. | |
template<se::Safe SafeB> | |
void | unique_codes (const std::vector< se::key_t > &keys, std::vector< se::key_t > &unique_keys) |
Filter keys based on their code and keep the key with the smallest scale. | |
template<se::Safe SafeB> | |
void | unique_allocation (const std::vector< se::key_t > &keys, const scale_t max_block_scale, std::vector< se::key_t > &unique_keys) |
Filter keys based on unique allocation. | |
template<se::Safe SafeB> | |
void | unique_at_scale (const std::vector< se::key_t > &keys, const se::scale_t scale, std::vector< se::key_t > &unique_keys) |
Filter keys at a given scale. | |
void | face_neighbours (const se::key_t key, std::array< se::key_t, 6 > face_neighbour_keys) |
TODO: 6-connectivity + centre. | |
void | neighbours (const se::key_t key, std::array< se::key_t, 26 > neighbour_keys) |
TODO: 26-connectivity. | |
void | siblings (const se::key_t key, std::array< se::key_t, 8 > sibling_keys) |
TODO: 4 siblings (includes key) | |
|
inline |
Verify if a key is valid.
[in] | key | The key to be varified |
Verify if a coordinate can be expressed in a key.
[in] | coord | The 3D coordinates to be varified |
|
inline |
Expands a value that can be expressed by <= 19 bits E.g.
DCBA => 00D 00C 00B 00A
[in] | value | The value to be expanded |
Compresses a value E.g.
00D 00C 00B 00A => DCBA
[in] | value | The value to be compressed |
|
inline |
Encodes given coordinates and scale in a key.
[in] | coord | The coordinates to be encoded |
[in] | scale | The scale at which to encode the coordinates |
[out] | key | The encoded key |
|
inline |
Encodes given coordinates and scale in a key.
[in] | coord | The coordinates to be encoded |
[in] | scale | The scale at which to encode the coordinates |
|
inline |
Encodes given morton code and scale in a key.
[in] | coord | The coordinates to be encoded |
[in] | scale | The scale at which to encode the cooridinates |
[out] | key | The encoded key |
|
inline |
Encodes given morton code and scale in a key.
[in] | coord | The coordinates to be encoded |
[in] | scale | The scale at which to encode the cooridinates |
|
inline |
Extracts the 3D coordinates and scale from a given key.
[in] | key | The key to be encoded |
[out] | coord | The 3D coordinates of the key |
[out] | scale | The the scale of the key |
|
inline |
Compute the Morton code for given x,y,z coordinates.
[in] | coord | The coordinates to be encoded |
[out] | code | The Morten code representing the coordinates |
|
inline |
Compute the Morton code for given x,y,z coordinates.
[in] | coord | The coordinates to be encoded |
[out] | code | The Morten code representing the coordinates |
|
inline |
Compute the x,y,z coordinates for a given Morton code.
[in] | code | The code to be encoded |
[out] | coord | The coordinates representing the Morton code |
|
inline |
Extracts the child index from a Morton code for a given scale.
code | The full Morton code |
scale | The scale at which to extract the child index |
|
inline |
Reduce a key to only its Morton code.
[in] | key | The key containing the Morton code |
Reduce a key to only its Morton code.
[in] | key | The key containing the Morton code |
Reduce a key to only its scale.
[in] | key | The key containing the Morton code |
|
inline |
For a given key, change the key scale and reduce detail from Morton code up to given the scale.
[in] | key | The key to be modified |
[in] | scale | The scale the key should be changed to |
[out] | key_at_scale | The modified key |
|
inline |
For a given key, reduce detail from Morton code up to given a scale.
[in] | key | The key containing the code to be modified |
[in] | scale | The scale the code should be reduced to |
[out] | code_at_scale | The modified code |
Compute the direct parent key for a given key.
[in] | key | The key to compute the direct parent from |
[in] | parent_key | The parent key |
|
inline |
Removes the voxel position detail within a block from a key while maintainig the scale information.
[in] | key | The key to be filtered |
[in] | max_block_scale | The maximum scale of a block |
|
inline |
Removes the voxel position detail within a block from a code.
[in] | key | The key to be filtered |
[in] | max_block_scale | The maximum scale of a block |
|
inline |
Compute the child key for a given parent key and child index.
code_at_scale
is equivalent to se::code_t(child_idx)
[in] | parent_key | The key of parent |
[in] | code_at_scale | The morton code segment at the scale e.g. 000, 001, ... , 110, ... , 111 |
[out] | child_key | The key of the child |
Verify if a key is a child of a different key.
[in] | parent_key | The key of the parent |
[in] | child_key | The key of the potential child |
|
inline |
Verify if two keys encode sibling nodes/voxels.
[in] | sibling_1_key | The key of the first sibling |
[in] | sibling_2_key | The key of the second sibling |
|
inline |
Sorting template.
Default small to larger key sorting.
|
inline |
Sorts the keys from smallest to largest.
[in/out] | keys The keys to be sorted |
|
inline |
Sorts the keys from largest to smallest.
[in/out] | keys |
|
inline |
Filter keys based on the whole key (i.e.
code and scale).
[in] | keys | The keys to be filtered |
[out] | unique_keys | The filtered unique keys |
|
inline |
Filter keys based on their code and keep the key with the smallest scale.
[in] | keys | The keys to be filtered |
[out] | unique_keys | The filtered unique keys |
|
inline |
Filter keys based on unique allocation.
[in] | keys | The keys to be filtered |
[out] | unique_keys | The filtered unique keys |
|
inline |
Filter keys at a given scale.
[in] | keys | The keys to be filtered |
[in] | scale | The scale at which to filter the keys |
[out] | unique_keys | The filtered unique keys |
|
inline |
TODO: 6-connectivity + centre.
Compute the 6 face neighbour keys of a given key (excluding the key itself)
[in] | key | The key of which to get the neighbours from |
[out] | face_neighbour_keys | The 6 face neighbour keys |
|
inline |
TODO: 26-connectivity.
Compute the 26 neighbour keys of a given key (excluding the key itself)
[in] | key | The key of which to get the neighbours from |
[out] | neighbour_keys | The 26 neighbour keys |