-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
normalization.qmd
108 lines (73 loc) · 6.11 KB
/
normalization.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
```{r,echo=FALSE,message=FALSE,warning=FALSE}
r3dDefaults = rgl::r3dDefaults
m = structure(c(0.921, -0.146, 0.362, 0, 0.386, 0.482, -0.787, 0,
-0.06, 0.864, 0.5, 0, 0, 0, 0, 1), .Dim = c(4L, 4L))
r3dDefaults$FOV = 50
r3dDefaults$userMatrix = m
r3dDefaults$zoom = 0.75
library(lidR)
library(stars)
knitr::opts_chunk$set(
comment = "#>",
collapse = TRUE,
fig.align = "center")
rgl::setupKnitr(autoprint = TRUE)
```
# Height normalization {#sec-norm}
The purpose of the DTM, apart from using it as a stand alone product for water drainage, archaeology, road planning etc. is to facilitate terrain normalization. Described simply, point cloud normalization removes the influence of terrain on above ground measurements. This makes comparison of above ground vegetation heights possible and simplifies analyses across acquisition areas.
When reading a non-normalized file we can see the terrain variation are visible.
```{r plot-topo-norm, rgl = TRUE, warning=FALSE}
LASfile <- system.file("extdata", "Topography.laz", package="lidR")
las <- readLAS(LASfile)
plot(las, size = 3, bg = "white")
```
To get a better idea of what the terrain looks like lets remove all non-ground points
```{r plot-gnd-norm, rgl = TRUE}
gnd <- filter_ground(las)
plot(gnd, size = 3, bg = "white", color = "Classification")
```
The goal of normalization is to get a flat terrain. Two normalization approaches are most commonly used:
1. Subtract the derived raster DTM (@sec-dtm) elevation from all non-ground returns.
2. Interpolate ground points directly and subtract beneath the non-ground returns.
## DTM normalization {#sec-norm-dtm}
To normalize points using a DTM we first need to create the DTM itself. For this we use the `rasterize_terrain()` function (see @sec-dtm). For this example we chose to use a grid resolution of 1 m and to use the `knnidw()` algorithm with default parameters.
```{r plot-dtm-norm, fig.height=5, fig.width=6}
dtm <- rasterize_terrain(las, 1, knnidw())
plot(dtm, col = gray(1:50/50))
```
Now that we have our surface and are satisfied with it we can use it to normalize our point cloud through subtraction.
```{r plot-norm-las, rgl = TRUE}
nlas <- las - dtm
plot(nlas, size = 4, bg = "white")
```
We can see that the point cloud has been normalized, making the point cloud flat. All the elevations are now relative to the ground surface. The ground surface being the reference 0 all the ground points are expected to be at Z = 0 by definition. But are they? Lets look at the distribution of ground points.
```{r plot-hist-gnd, fig.height=4, fig.width=4}
hist(filter_ground(nlas)$Z, breaks = seq(-0.6, 0.6, 0.01), main = "", xlab = "Elevation")
```
We can see that the ground points are **not** all at Z=0 and the histogram shows some points at +/- 25 cm. This occurs because the DTM is a discretized raster. The location of the pixels do not match the locations of the ground points. Lets assume we have two ground points with elevations of 257.5 and 258 meters respectively in a given pixel at 257.9 m. After normalization, their respective elevation will be -0.4 m and 0.1 m because each pixel has a single value meaning that all the points within a given pixel get normalized with the exact same elevation value. In a raster, the elevations are a succession of flat areas with discontinuities at each pixel. Thus a simple subtraction of the raster gives good results visually, but in practice can lead to many inaccuracies because of the discretized nature of the storage format.
## Point cloud normalization {#sec-norm-point-cloud}
Point cloud normalization without a DTM interpolates the elevation of every single point locations using ground points. It no longer uses elevations at discrete predefined locations. Thus the methods is exact, **computationally speaking**. It means that it is equivalent to using a continuous DTM but it is important to recall that all interpolation methods are interpolation and by definition make guesses with different strategies. Thus by "exact" we mean "continuous". To compute the continuous normalization, we can feed `normalize_height()` with an algorithm for spatial interpolation instead of a raster.
```{r}
nlas <- normalize_height(las, knnidw())
```
All the ground points should be exactly 0. Let check it:
```{r plot-hist-gnd-3, fig.height=4, fig.width=4}
hist(filter_ground(nlas)$Z, breaks = seq(-0.6, 0.6, 0.01), main = "", xlab = "Elevation")
```
One can reproduce this with other algorithm such as `tin()`. It's also important to recall buffer and edge artifacts also apply here
## Hybrid method
`nlas <- las - dtm` makes very simple subtractions without any interpolation. `normalize_height(las, knnidw())` computes on-the-fly the interpolation of the ground points and estimates the exact elevation of every points. An hybrid method consists in the interpolation of the pixel of an already computed DTM.
```{r}
nlas <- normalize_height(las, tin(), dtm = dtm)
```
In this case, the ground points in `las` are not considered for interpolation. The DTM is used as regularly spaced ground points that are triangulated.
```{r plot-hist-gnd-4, fig.height=4, fig.width=4}
hist(filter_ground(nlas)$Z, breaks = seq(-0.6, 0.6, 0.01), main = "", xlab = "Elevation")
```
## Pros and cons {#sec-norm-pros-cons}
Point cloud based normalization is superior in terms of computational accuracy by normalizing with a continuous terrain instead of a discretized terrain. It is however computationally intensive compared to a raster-based method. In addition raster DTMs are storable on disk and can be loaded quicky to be used to normalize different data sets, while point cloud based methods need to be recomputed for each point cloud. It's up to the user to choose which method best suits their needs. `lidR` provides the options. The hybrid method is also computationally demanding because it interpolates even more data (a DTM is usually 1 point per square meter while ground points are usually less than that.)
## Reversing normalization {#sec-norm-reverse}
`lidR` also has the capacity to reverse normalization using the `unnormalize_height` function. This reverts the normalized point cloud to its pre-normalized state.
``` r
las <- unnormalize_height(nlas)
```