Package boofcv.abst.geo.triangulate
Class Wrap2ViewsTriangulateGeometric
java.lang.Object
boofcv.abst.geo.triangulate.Wrap2ViewsTriangulateGeometric
- All Implemented Interfaces:
Triangulate2ViewsMetric
Wrapper around
Triangulate2ViewsGeometricMetric
for Triangulate2ViewsMetric
.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
triangulate
(Point2D_F64 obsA, Point2D_F64 obsB, Se3_F64 fromAtoB, Point3D_F64 foundInA) Triangulate the points location.
-
Constructor Details
-
Wrap2ViewsTriangulateGeometric
public Wrap2ViewsTriangulateGeometric()
-
-
Method Details
-
triangulate
public boolean triangulate(Point2D_F64 obsA, Point2D_F64 obsB, Se3_F64 fromAtoB, Point3D_F64 foundInA) Description copied from interface:Triangulate2ViewsMetric
Triangulate the points location.- Specified by:
triangulate
in interfaceTriangulate2ViewsMetric
- Parameters:
obsA
- View from position A in normalized image coordinates.obsB
- View from position B in normalized image coordinates.fromAtoB
- Transform from camera location A to location BfoundInA
- The found triangulated 3D point in A's reference frame.- Returns:
- true if successful, false otherwise.
-