Nothing
### Filter
test_that("Whether filter SOR works", {
data("pc_tree")
pc <- pc_tree
to_SOR <- filter(pc, method = "SOR", k = 20, nSigma = 1)
#expect_equal(nrow(to_SOR), 64777, info = "Number of points")
expect_equal(ncol(to_SOR), 3, info = "Number of columns")
})
test_that("Whether filter min_neighbors works", {
point_cloud <- data.table(X = c(0, 0, 0, 0, 0, -1, 1),
Y = c(0, 0, 0, -1, 1, 0, 0),
Z = c(-1, 0, 1, 0, 0, 0, 0))
to_min <- filter(point_cloud, method = "min_neighbors", radius = 1, min_neighbours = 2)
expect_equal(nrow(to_min), 1, info = "Number of points")
expect_equal(ncol(to_min), 3, info = "Number of columns")
expect_equal(as.numeric(to_min[1,]), c(0, 0, 0), info = "Values")
})
test_that("Whether filter voxel_center works", {
point_cloud <- data.table(X = c(0, 0, 0, 0, 0, -1, 1),
Y = c(0, 0, 0, -1, 1, 0, 0),
Z = c(-1, 0, 1, 0, 0, 0, 0))
to_voxel <- filter(point_cloud, method = "voxel_center", edge_length = 3)
expect_equal(nrow(to_voxel), 1, info = "Number of points")
expect_equal(ncol(to_voxel), 3, info = "Number of columns")
expect_equal(as.numeric(to_voxel[1,]), c(0, 0, 0), info = "Values")
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.