Package boofcv.abst.geo.triangulate
Class TriangulateRefineProjectiveLS
java.lang.Object
boofcv.abst.geo.triangulate.TriangulateRefineProjectiveLS
- All Implemented Interfaces:
RefineTriangulateProjective
Nonlinear least-squares triangulation for projective geometry in homogenous coordinates.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
process
(List<Point2D_F64> observations, List<DMatrixRMaj> cameraMatrices, Point4D_F64 worldPt, Point4D_F64 refinedPt) Refines the triangulated point.
-
Constructor Details
-
TriangulateRefineProjectiveLS
public TriangulateRefineProjectiveLS(double convergenceTol, int maxIterations)
-
-
Method Details
-
process
public boolean process(List<Point2D_F64> observations, List<DMatrixRMaj> cameraMatrices, Point4D_F64 worldPt, Point4D_F64 refinedPt) Description copied from interface:RefineTriangulateProjective
Refines the triangulated point.- Specified by:
process
in interfaceRefineTriangulateProjective
- Parameters:
observations
- Observations of feature in N views. Pixel coordinates.cameraMatrices
- Camera matrices for each viewworldPt
- Initial estimate of point in world coordinates.refinedPt
- The refined estimated point position.- Returns:
- if successful or not
-