Description Usage Arguments Value Examples
Classify stem points of all trees in a normalized point cloud. Stem denoising methods are prefixed by stm
.
1 | stemPoints(las, method = stm.hough())
|
las |
|
method |
stem denoising algorithm. Currently available: |
LAS
object.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ### single tree
file = system.file("extdata", "spruce.laz", package="TreeLS")
tls = readTLS(file) %>%
tlsNormalize %>%
stemPoints(stm.hough(h_base = c(.5,2)))
plot(tls, color='Stem')
### entire forest plot
file = system.file("extdata", "pine_plot.laz", package="TreeLS")
tls = readTLS(file) %>%
tlsNormalize %>%
tlsSample
map = treeMap(tls, map.hough())
tls = treePoints(tls, map, trp.crop(circle=FALSE))
tls = stemPoints(tls, stm.hough(pixel_size = 0.03))
tlsPlot(tls)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.