Stereo triangulation
This function uses triangulation to reconstruct 3D points from their projections in two images and
the corresponding camera matrices. Note that in this context, triangulation does *not* refer to subdivision
into triangles (e.g., as in Delaunay). Instead, this function computes the intersection in space of rays
defined by the camera centers and pairs of matching image projections. As these rays will probably
be skew due to various sources of error, the image projections can optionally be corrected prior to
triangulation so that they are consistent with the epipolar geometry. Correction might involve any of
i) global minimization of the error (optimal solution, involves 6th order polynomial), or
ii) Sampson approximation of the error
iii) Lindstrom's fast method (https://e-reports-ext.llnl.gov/pdf/384387.pdf)
Option i) is recommended, however, correction is not carried out by default.
After any correction, the points are linearly triangulated with DLT.
There is also the option of triangulating with the 3D midpoint method.
More details can be found in
R. Hartley and P. Sturm "Triangulation", CVIU 68(2):146-157, 1997
http://users.cecs.anu.edu.au/~hartley/Papers/triangulation/triangulation.pdf
Citation pour cette source
Manolis Lourakis (2025). Stereo triangulation (https://fr.mathworks.com/matlabcentral/fileexchange/67383-stereo-triangulation), MATLAB Central File Exchange. Extrait(e) le .
Compatibilité avec les versions de MATLAB
Plateformes compatibles
Windows macOS LinuxTags
Remerciements
A inspiré : Multi-view triangulation
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Découvrir Live Editor
Créez des scripts avec du code, des résultats et du texte formaté dans un même document exécutable.
| Version | Publié le | Notes de version | |
|---|---|---|---|
| 1.3 | Added Lindstrom's correction method. |
||
| 1.1.2 | Re-uploaded code (Mozilla did not succeed in previous attempts). |
||
| 1.1.1 | Re-uploaded code |
||
| 1.1 | Added the midpoint triangulation method. |
||
| 1.0.0.0 | Updated description |
