file_format | mystnb | jupytext | kernelspec | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
mystnb |
|
|
|
(coregistration)=
xDEM implements a wide range of coregistration algorithms and pipelines for 3-dimensional alignment from the peer-reviewed literature often tailored specifically to elevation data, aiming at correcting systematic elevation errors.
Two categories of alignment are generally differentiated: 3D affine transformations
described below, and other alignments that possibly rely on external variables, described in {ref}biascorr
.
Affine transformations can include vertical and horizontal translations, rotations and reflections, and scalings.
:::{admonition} More reading :class: tip
Coregistration heavily relies on the use of static surfaces, which you can read more about on the {ref}static-surfaces
guide page.
:::
Coregistration pipelines are defined by combining {class}~xdem.coreg.Coreg
objects:
:tags: [remove-cell]
# To get a good resolution for displayed figures
from matplotlib import pyplot
pyplot.rcParams['figure.dpi'] = 600
pyplot.rcParams['savefig.dpi'] = 600
pyplot.rcParams['font.size'] = 9 # Default 10 is a bit too big for coregistration plots
import xdem
# Create a coregistration pipeline
my_coreg_pipeline = xdem.coreg.ICP() + xdem.coreg.NuthKaab()
# Or use a single method
my_coreg_pipeline = xdem.coreg.NuthKaab()
Then, coregistering a pair of elevation data can be done by calling {func}xdem.coreg.workflows.dem_coregistration
, or
{func}xdem.DEM.coregister_3d
from the DEM that should be aligned.
:tags: [hide-cell]
:mystnb:
: code_prompt_show: "Show the code for opening example files"
: code_prompt_hide: "Hide the code for opening example files"
import geoutils as gu
import numpy as np
import matplotlib.pyplot as plt
from xdem.coreg.workflows import dem_coregistration
# Open a reference and to-be-aligned DEM
ref_dem = xdem.DEM(xdem.examples.get_path("longyearbyen_ref_dem"))
tba_dem = xdem.DEM(xdem.examples.get_path("longyearbyen_tba_dem"))
# Coregister by calling the dem_coregistration function
aligned_dem = dem_coregistration(tba_dem, ref_dem, coreg_method=my_coreg_pipeline)
# Coregister by calling the DEM method
aligned_dem = tba_dem.coregister_3d(ref_dem, my_coreg_pipeline)
Alternatively, the coregistration can be applied by calling {func}~xdem.coreg.Coreg.fit_and_apply
, or sequentially
calling the {func}~xdem.coreg.Coreg.fit
and {func}~xdem.coreg.Coreg.apply
steps,
which allows a broader variety of arguments at each step, and re-using the same transformation to several objects
(e.g., horizontal shift of both a stereo DEM and its ortho-image).
# (Equivalent) Or use fit and apply
aligned_dem = my_coreg_pipeline.fit_and_apply(ref_dem, tba_dem)
Information about the coregistration inputs and outputs is summarized in {func}~xdem.coreg.Coreg.info
.
Often, an `inlier_mask` has to be passed to {func}`~xdem.coreg.Coreg.fit` to isolate static surfaces to utilize during coregistration (for instance removing vegetation, snow, glaciers). This mask can be easily derived using {func}`~geoutils.Vector.create_mask`.
:widths: 1 1 1
:header-rows: 1
:stub-columns: 1
* - Affine method
- Description
- Reference
* - {ref}`nuthkaab`
- Horizontal and vertical translations
- [Nuth and Kääb (2011)](https://doi.org/10.5194/tc-5-271-2011)
* - {ref}`dh-minimize`
- Horizontal and vertical translations
- N/A
* - {ref}`icp`
- Translation and rotations
- [Besl and McKay (1992)](https://doi.org/10.1117/12.57955)
* - {ref}`vshift`
- Vertical translation
- N/A
(coreg_object)=
Each coregistration method implemented in xDEM inherits their interface from the {class}~xdem.coreg.Coreg
class1, and has the following methods:
- {func}
~xdem.coreg.Coreg.fit_and_apply
for estimating the transformation and applying it in one step, - {func}
~xdem.coreg.Coreg.info
for plotting the metadata, including inputs and outputs of the coregistration.
For more details on the input and output metadata stored by coregistration methods, see the {ref}coreg-meta
section.
The two above methods cover most uses. More specific methods are also available:
- {func}
~xdem.coreg.Coreg.fit
for estimating the transformation without applying it, - {func}
~xdem.coreg.Coreg.apply
for applying an estimated transformation, - {func}
~xdem.coreg.AffineCoreg.to_matrix
to convert the transform to a 4x4 transformation matrix, if possible, - {func}
~xdem.coreg.AffineCoreg.from_matrix
to create a coregistration from a 4x4 transformation matrix.
<sup>1</sup>In a style inspired by [scikit-learn's pipelines](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LinearRegression.html#sklearn-linear-model-linearregression).
Inheritance diagram of implemented coregistrations:
.. inheritance-diagram:: xdem.coreg.base.Coreg xdem.coreg.affine xdem.coreg.biascorr
:top-classes: xdem.coreg.Coreg
See {ref}biascorr
for more information on non-rigid transformations.
Below we **create misaligned elevation data to examplify the different methods** in relation to their type of affine transformation.
See coregistration on real data in the **{ref}`examples-basic` and {ref}`examples-advanced` gallery examples**!
(nuthkaab)=
{class}xdem.coreg.NuthKaab
- Performs: Horizontal and vertical shifts.
- Supports weights: Planned.
- Pros: Refines sub-pixel horizontal shifts accurately, with fast convergence.
- Cons: Diverges on flat terrain, as landforms are required to constrain the fit with aspect and slope.
The Nuth and Kääb (2011) coregistration approach estimates a horizontal translation iteratively by solving a cosine equation between the terrain slope, aspect and the elevation differences. The iteration stops if it reaches the maximum number of iteration limit, or if the iterative shift amplitude falls below a specified tolerance.
:tags: [hide-cell]
:mystnb:
: code_prompt_show: "Show the code for adding a horizontal and vertical shift"
: code_prompt_hide: "Hide the code for adding a horizontal and vertical shift"
x_shift = 30
y_shift = 30
z_shift = 10
# Affine matrix for 3D transformation
matrix = np.array(
[
[1, 0, 0, x_shift],
[0, 1, 0, y_shift],
[0, 0, 1, z_shift],
[0, 0, 0, 1],
]
)
# We create misaligned elevation data
tba_dem_shifted = xdem.coreg.apply_matrix(ref_dem, matrix)
# Define a coregistration based on the Nuth and Kääb (2011) method
nuth_kaab = xdem.coreg.NuthKaab()
# Fit to data and apply
aligned_dem = nuth_kaab.fit_and_apply(ref_dem, tba_dem_shifted)
:tags: [hide-input]
:mystnb:
: code_prompt_show: "Show plotting code"
: code_prompt_hide: "Hide plotting code"
# Plot before and after
f, ax = plt.subplots(1, 2)
ax[0].set_title("Before NK")
(tba_dem_shifted - ref_dem).plot(cmap='RdYlBu', vmin=-30, vmax=30, ax=ax[0])
ax[1].set_title("After NK")
(aligned_dem - ref_dem).plot(cmap='RdYlBu', vmin=-30, vmax=30, ax=ax[1], cbar_title="Elevation differences (m)")
_ = ax[1].set_yticklabels([])
plt.tight_layout()
(dh-minimize)=
{class}xdem.coreg.DhMinimize
- Performs: Horizontal and vertical shifts.
- Supports weights: Planned.
- Pros: Can be used to perform both local and global registration by tuning the minimizer.
- Cons: Sensitive to noise.
The minimization of elevation differences (or dh) coregistration approach estimates a horizontal translation by minimizing any statistic on the elevation differences, typically their spread (defaults to the NMAD).
# Define a coregistration based on the dh minimization approach
dh_minimize = xdem.coreg.DhMinimize()
# Fit to data and apply
aligned_dem = dh_minimize.fit_and_apply(ref_dem, tba_dem_shifted)
:tags: [hide-input]
:mystnb:
: code_prompt_show: "Show plotting code"
: code_prompt_hide: "Hide plotting code"
# Plot before and after
f, ax = plt.subplots(1, 2)
ax[0].set_title("Before dh\nminimize")
(tba_dem_shifted - ref_dem).plot(cmap='RdYlBu', vmin=-30, vmax=30, ax=ax[0])
ax[1].set_title("After dh\nminimize")
(aligned_dem - ref_dem).plot(cmap='RdYlBu', vmin=-30, vmax=30, ax=ax[1], cbar_title="Elevation differences (m)")
_ = ax[1].set_yticklabels([])
plt.tight_layout()
(vshift)=
{class}xdem.coreg.VerticalShift
- Performs: Vertical shifting using any custom function (mean, median, percentile).
- Supports weights: Planned.
- Pros: Useful to have as independent step to refine vertical alignment precisely as it is the most sensitive to outliers, by refining inliers and the central estimate function.
- Cons: Always needs to be combined with another approach.
The vertical shift coregistration is simply a shift based on an estimate of the mean elevation differences with customizable arguments.
:tags: [hide-cell]
:mystnb:
: code_prompt_show: "Show the code for adding a vertical shift"
: code_prompt_hide: "Hide the code for adding a vertical shift"
# Apply a vertical shift of 10 meters
tba_dem_vshifted = ref_dem + 10
# Define a coregistration object based on a vertical shift correction
vshift = xdem.coreg.VerticalShift(vshift_reduc_func=np.median)
# Fit and apply
aligned_dem = vshift.fit_and_apply(ref_dem, tba_dem_vshifted)
:tags: [hide-input]
:mystnb:
: code_prompt_show: "Show plotting code"
: code_prompt_hide: "Hide plotting code"
# Plot before and after
f, ax = plt.subplots(1, 2)
ax[0].set_title("Before vertical\nshift")
(tba_dem_vshifted - ref_dem).plot(cmap='RdYlBu', vmin=-30, vmax=30, ax=ax[0])
ax[1].set_title("After vertical\nshift")
(aligned_dem - ref_dem).plot(cmap='RdYlBu', vmin=-30, vmax=30, ax=ax[1], cbar_title="Elevation differences (m)")
_ = ax[1].set_yticklabels([])
plt.tight_layout()
(icp)=
{class}xdem.coreg.ICP
- Performs: Rigid transform transformation (3D translation + 3D rotation).
- Does not support weights.
- Pros: Efficient at estimating rotation and shifts simultaneously.
- Cons: Poor sub-pixel accuracy for horizontal shifts, sensitive to outliers, and runs slowly with large samples.
Iterative Closest Point (ICP) coregistration is an iterative point cloud registration method from Besl and McKay (1992). It aims at iteratively minimizing the distance between closest neighbours by applying sequential rigid transformations. If DEMs are used as inputs, they are converted to point clouds. As for Nuth and Kääb (2011), the iteration stops if it reaches the maximum number of iteration limit or if the iterative transformation amplitude falls below a specified tolerance.
ICP is currently based on OpenCV's implementation (an optional dependency), which includes outlier removal arguments. This may improve results significantly on outlier-prone data, but care should still be taken, as the risk of landing in local minima increases.
:tags: [hide-cell]
:mystnb:
: code_prompt_show: "Show the code for adding a shift and rotation"
: code_prompt_hide: "Hide the code for adding a shift and rotation"
# Apply a rotation of 0.2 degrees in X, 0.1 in Y and 0 in Z
e = np.deg2rad([0.2, 0.1, 0])
# Add X/Y/Z shifts in meters
shifts = np.array([10, 20, 5])
# Affine matrix for 3D transformation
import pytransform3d
matrix_rot = pytransform3d.rotations.matrix_from_euler(e, i=0, j=1, k=2, extrinsic=True)
matrix = np.diag(np.ones(4, dtype=float))
matrix[:3, :3] = matrix_rot
matrix[:3, 3] = shifts
centroid = [ref_dem.bounds.left + 5000, ref_dem.bounds.top - 2000, np.median(ref_dem)]
# We create misaligned elevation data
tba_dem_shifted_rotated = xdem.coreg.apply_matrix(ref_dem, matrix, centroid=centroid)
# Define a coregistration based on ICP
icp = xdem.coreg.ICP()
# Fit to data and apply
aligned_dem = icp.fit_and_apply(ref_dem, tba_dem_shifted_rotated)
:tags: [hide-input]
:mystnb:
: code_prompt_show: "Show plotting code"
: code_prompt_hide: "Hide plotting code"
# Plot before and after
f, ax = plt.subplots(1, 2)
ax[0].set_title("Before ICP")
(tba_dem_shifted_rotated - ref_dem).plot(cmap='RdYlBu', vmin=-30, vmax=30, ax=ax[0])
ax[1].set_title("After ICP")
(aligned_dem - ref_dem).plot(cmap='RdYlBu', vmin=-30, vmax=30, ax=ax[1], cbar_title="Elevation differences (m)")
_ = ax[1].set_yticklabels([])
plt.tight_layout()
Often, more than one coregistration approach is necessary to obtain the best results, and several need to be combined
sequentially. A {class}~xdem.coreg.CoregPipeline
can be constructed for this:
# We can list sequential coregistration methods to apply
pipeline = xdem.coreg.CoregPipeline([xdem.coreg.ICP(), xdem.coreg.NuthKaab()])
# Or sum them, which works identically as the syntax above
pipeline = xdem.coreg.ICP() + xdem.coreg.NuthKaab()
The {class}~xdem.coreg.CoregPipeline
object exposes the same interface as the {class}~xdem.coreg.Coreg
object.
The results of a pipeline can be used in other programs by exporting the combined transformation matrix using {func}~xdem.coreg.Coreg.to_matrix
.
<sup>2</sup>Here again, this class is heavily inspired by SciKit-Learn's [Pipeline](https://scikit-learn.org/stable/modules/generated/sklearn.pipeline.Pipeline.html#sklearn-pipeline-pipeline) and [make_pipeline()](https://scikit-learn.org/stable/modules/generated/sklearn.pipeline.make_pipeline.html#sklearn.pipeline.make_pipeline) functionalities.
# Fit to data and apply the pipeline of ICP + Nuth and Kääb
aligned_dem = pipeline.fit_and_apply(ref_dem, tba_dem_shifted_rotated)
:tags: [hide-input]
:mystnb:
: code_prompt_show: "Show plotting code"
: code_prompt_hide: "Hide plotting code"
# Plot before and after
f, ax = plt.subplots(1, 2)
ax[0].set_title("Before ICP + NK")
(tba_dem_shifted_rotated - ref_dem).plot(cmap='RdYlBu', vmin=-30, vmax=30, ax=ax[0])
ax[1].set_title("After ICP + NK")
(aligned_dem - ref_dem).plot(cmap='RdYlBu', vmin=-30, vmax=30, ax=ax[1], cbar_title="Elevation differences (m)")
_ = ax[1].set_yticklabels([])
plt.tight_layout()
To ensure sub-pixel accuracy, the Nuth and Kääb (2011) coregistration should almost always be used as a final step. The approach does not account for rotations in the dataset, however, so a combination is often necessary. For small rotations, a 1st degree deramp can be used in combination:
pipeline = xdem.coreg.NuthKaab() + xdem.coreg.Deramp(poly_order=1)
For larger rotations, ICP can be used instead:
pipeline = xdem.coreg.ICP() + xdem.coreg.NuthKaab()
Additionally, ICP tends to fail with large initial vertical differences, so a preliminary vertical shifting can be used:
pipeline = xdem.coreg.VerticalShift() + xdem.coreg.ICP() + xdem.coreg.NuthKaab()
(coreg-meta)=
The metadata surrounding a coregistration method, which can be displayed by {func}~xdem.coreg.Coreg.info
, is stored in
the {attr}~xdem.coreg.Coreg.meta
nested dictionary.
This metadata is divided into inputs and outputs. Input metadata corresponds to what arguments are
used when initializing a {class}~xdem.coreg.Coreg
object, while output metadata are created during the call to
{func}~xdem.coreg.Coreg.fit
. Together, they allow to apply the transformation during the
{func}~xdem.coreg.Coreg.apply
step of the coregistration.
# Example of metadata info after fitting
my_coreg_pipeline.info()
For both inputs and outputs, four consistent categories of metadata are defined.
Note: Some metadata, such as the parameters fit_or_bin
and fit_func
described below, are pre-defined for affine coregistration methods and cannot be modified. They only take user-specified value for {ref}biascorr
.
1. Randomization metadata (common to all):
- An input
subsample
to define the subsample size of valid data to use in all methods (recommended for performance), - An input
random_state
to define the random seed for reproducibility of the subsampling (and potentially other random aspects such as optimizers), - An output
subsample_final
that stores the final subsample size used, which can be smaller than requested depending on the amount of valid data intersecting the two elevation datasets.
2. Fitting and binning metadata (common to nearly all methods):
- An input
fit_or_bin
to either fit a parametric model by passing "fit", perform an empirical binning by passing "bin", or to fit a parametric model to the binning with "bin_and_fit" (only "fit" or "bin_and_fit" possible for affine methods), - An input
fit_func
to pass any parametric function to fit to the bias (pre-defined for affine methods), - An input
fit_optimizer
to pass any optimizer function to perform the fit minimization, - An input
bin_sizes
to pass the size or edges of the bins for each variable, - An input
bin_statistic
to pass the statistic to compute in each bin, - An input
bin_apply_method
to pass the method to apply the binning for correction, - An output
fit_params
that stores the optimized parameters forfit_func
, - An output
fit_perr
that stores the error of optimized parameters (only for defaultfit_optimizer
), - An output
bin_dataframe
that stores the dataframe of binned statistics.
3. Iteration metadata (common to all iterative methods):
- An input
max_iterations
to define the maximum number of iterations at which to stop the method, - An input
tolerance
to define the tolerance at which to stop iterations (tolerance unit defined in method description), - An output
last_iteration
that stores the last iteration of the method, - An output
all_tolerances
that stores the tolerances computed at each iteration.
4. Affine metadata (common to all affine methods):
- An output
matrix
that stores the estimated affine matrix, - An output
centroid
that stores the centroid coordinates with which to apply the affine transformation, - Outputs
shift_x
,shift_y
andshift_z
that store the easting, northing and vertical offsets, respectively.
In xDEM, you can extract the translations and rotations of an affine matrix using {class}`xdem.coreg.AffineCoreg.to_translations` and
{class}`xdem.coreg.AffineCoreg.to_rotations`.
To further manipulate affine matrices, see the [documentation of pytransform3d](https://dfki-ric.github.io/pytransform3d/rotations.html).
5. Specific metadata (only for certain methods):
These metadata are only inputs specific to a given method, outlined in the method description.
For instance, for {class}xdem.coreg.Deramp
, an input poly_order
to define the polynomial order used for the fit, and
for {class}xdem.coreg.DirectionalBias
, an input angle
to define the angle at which to do the directional correction.
The {class}`~xdem.coreg.blockwise.BlockwiseCoreg` feature is still experimental: it might not support all coregistration
methods, and create edge artefacts.
Sometimes, we want to split a coregistration across different spatial subsets of an elevation dataset, running that
method independently in each subset. A {class}~xdem.coreg.blockwise.BlockwiseCoreg
can be constructed for this:
blockwise = xdem.coreg.blockwise.BlockwiseCoreg(xdem.coreg.NuthKaab(), subdivision=16)
The subdivision corresponds to an equal-length block division across the extent of the elevation dataset. It needs
to be a number of the form 2{sup}n
(such as 4 or 256).
It is run the same way as other coregistrations:
# Run 16 block coregistrations
aligned_dem = blockwise.fit_and_apply(ref_dem, tba_dem_shifted)
:tags: [hide-input]
:mystnb:
: code_prompt_show: "Show plotting code"
: code_prompt_hide: "Hide plotting code"
# Plot before and after
f, ax = plt.subplots(1, 2)
ax[0].set_title("Before block NK")
(tba_dem_shifted - ref_dem).plot(cmap='RdYlBu', vmin=-30, vmax=30, ax=ax[0])
ax[1].set_title("After block NK")
(aligned_dem - ref_dem).plot(cmap='RdYlBu', vmin=-30, vmax=30, ax=ax[1], cbar_title="Elevation differences (m)")
_ = ax[1].set_yticklabels([])