
Estimates tree occurrence regions from a normalized point cloud.
treeMap(las, method = map.hough())
LAS
object.
tree mapping algorithm - currently available: map.hough
.
LAS
object with tree_map signature.
The output is a LAS
object with extra fields in the data
slot. For more details on the output fields checkout map.hough
's help page.
# NOT RUN {
file = system.file("extdata", "model_boles.laz", package="TreeLS")
tls = readTLS(file)
plot(tls)
## build a 3D map of tree occurrences
map = treeMap(tls)
plot(map, color='Radii')
## get a 2D representation of the tree map
xymap = treePositions(map)
head(xymap)
# }
Run the code above in your browser using DataLab