Package boofcv.abst.geo.triangulate
Class TriangulateThenRefineMetricH
java.lang.Object
boofcv.abst.geo.triangulate.TriangulateThenRefineMetricH
- All Implemented Interfaces:
TriangulateNViewsMetricH
Estimates the triangulated point then refines it
-
Constructor Summary
ConstructorDescriptionTriangulateThenRefineMetricH
(TriangulateNViewsMetricH estimator, RefineTriangulateMetricH refiner) -
Method Summary
Modifier and TypeMethodDescriptionboolean
triangulate
(List<Point2D_F64> observations, List<Se3_F64> listWorldToView, Point4D_F64 location) Triangulates the point's location.
-
Constructor Details
-
TriangulateThenRefineMetricH
public TriangulateThenRefineMetricH(TriangulateNViewsMetricH estimator, RefineTriangulateMetricH refiner)
-
-
Method Details
-
triangulate
public boolean triangulate(List<Point2D_F64> observations, List<Se3_F64> listWorldToView, Point4D_F64 location) Description copied from interface:TriangulateNViewsMetricH
Triangulates the point's location.- Specified by:
triangulate
in interfaceTriangulateNViewsMetricH
- Parameters:
observations
- Observations of the 3D point in normalized image coordinates from different camera views.listWorldToView
- Transform from world to each of the different camera viewslocation
- Computed location of feature in world coordinates.- Returns:
- true if successful, false otherwise.
-