View source: R/voxels_counting.R
voxels_counting | R Documentation |
Creates cube like voxels of different size on a point cloud using the voxels
function, and then return a summary_voxels
of their features.
voxels_counting( cloud, edge_sizes = NULL, min_size, length_out = 10, bootstrap = FALSE, R = NULL, progress = TRUE, parallel = FALSE, threads = NULL )
cloud |
A |
edge_sizes |
A positive |
min_size |
A positive |
length_out |
A positive |
bootstrap |
Logical. If |
R |
A positive |
progress |
Logical, if |
parallel |
Logical, if |
threads |
An |
A data.table
with the summary of the voxels created with their features.
J. Antonio Guzmán Q.
voxels
, summary_voxels
, plot_voxels
data(pc_tree) #Applying voxels counting. voxels_counting(pc_tree, min_size = 2) #Voxels counting using bootstrap on the H indexes with 1000 repetitions. voxels_counting(pc_tree, min_size = 2, bootstrap = TRUE, R = 1000)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.