Usage
itcLiDAR(X = NULL, Y = NULL, Z = NULL, epsg = 4326, resolution = 0.5,
MinSearchFilSize = 3, MaxSearchFilSize = 7, TRESHSeed = 0.55,
TRESHCrown = 0.6, minDIST = 5, maxDIST = 40, HeightThreshold = 2)
Arguments
X
A column vector of x coordinates.
Y
A column vector of y coordinates (it must have the same length as X).
Z
A column vector of z coordinates (it must have the same length as X). Z must be normalized respect to the ground.
epsg
The EPSG code of the reference system of the X,Y coordinates. Default: 4326 (lat long WGS 84)
resolution
The resolution of the raster on which the first segmentation is carried out.
MinSearchFilSize
Minimum size (in pixels) of the moving window used to the detect the local maxima. It should be an odd number larger than 3.
MaxSearchFilSize
Maximum size (in pixels) of the moving window used to the detect the local maxima. It should be bigger or equal to MinSearchFilSize, and it should be an odd number larger than 3.
TRESHSeed
Growing threshold 1. It should be between 0 and 1.
TRESHCrown
Growing threshold 2. It should be between 0 and 1.
minDIST
Minimum value of the crown diameter of a detected tree (in meters).
maxDIST
Maximum value of the crown diameter of a detected tree (in meters). It should be bigger or equal to minDIST.
HeightThreshold
Minimum height of the trees.