Package boofcv.abst.geo
Interface TriangulateNViewsMetricH
- All Known Implementing Classes:
TriangulateThenRefineMetricH
,WrapNViewsTriangulateMetricHgDLT
public interface TriangulateNViewsMetricH
Triangulate the location of a 3D point in homogenous coordinates from N views a calibrated camera and known poses.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
triangulate
(List<Point2D_F64> observations, List<Se3_F64> listWorldToView, Point4D_F64 location) Triangulates the point's location.
-
Method Details
-
triangulate
boolean triangulate(List<Point2D_F64> observations, List<Se3_F64> listWorldToView, Point4D_F64 location) Triangulates the point's location.- 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.
-