Description Usage Arguments Value Examples
Assigns TreeID
s to a LAS
object based on coordinates extracted from a
treeMap
object. Tree region segmentation methods are prefixed by trp
.
1 | treePoints(las, map, method = trp.voronoi())
|
las |
|
map |
object generated by |
method |
tree region algorithm. Currently available: |
LAS
object.
1 2 3 4 5 6 7 8 9 10 11 | 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))
x = plot(tls, size=1)
add_treePoints(x, tls, size=2)
add_treeIDs(x, tls, color='yellow', cex=2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.