TreeLS (version 1.0)

stemPoints: Stem points classification

Description

Classify stem points on a normalized point cloud.

Usage

stemPoints(las, map = NULL, method = stem.hough())

Arguments

las

LAS object.

map

optional - map of tree positions (output from treeMap or treePositions). If omitted, the algorithm assumes las is a single tree.

method

stem denoising algorithm - currently available: stem.hough.

Value

LAS object with stem_points signature.

Examples

Run this code
# NOT RUN {
### single tree
file = system.file("extdata", "pine.laz", package="TreeLS")
tls = readTLS(file)
tls = stemPoints(tls)
plot(tls, color='Stem')

### forest plot - check the example given for the stem segmentation function
?stemSegmentation

# }

Run the code above in your browser using DataLab