Package boofcv.abst.geo.triangulate
Class TriangulateThenRefineProjective
java.lang.Object
boofcv.abst.geo.triangulate.TriangulateThenRefineProjective
- All Implemented Interfaces:
TriangulateNViewsProjective
Estimates the triangulated point then refines it
-
Constructor Summary
ConstructorDescriptionTriangulateThenRefineProjective
(TriangulateNViewsProjective estimator, RefineTriangulateProjective refiner) -
Method Summary
Modifier and TypeMethodDescriptionboolean
triangulate
(List<Point2D_F64> observations, List<DMatrixRMaj> worldToView, Point4D_F64 location) Triangulate the points location.
-
Constructor Details
-
TriangulateThenRefineProjective
public TriangulateThenRefineProjective(TriangulateNViewsProjective estimator, RefineTriangulateProjective refiner)
-
-
Method Details
-
triangulate
public boolean triangulate(List<Point2D_F64> observations, List<DMatrixRMaj> worldToView, Point4D_F64 location) Description copied from interface:TriangulateNViewsProjective
Triangulate the points location.- Specified by:
triangulate
in interfaceTriangulateNViewsProjective
- Parameters:
observations
- (Input) Observations of the 3D point in pixel coordinates from different camera viewsworldToView
- (Input) Camera projection matrices. x = A*Xlocation
- (Output) Homogenous coordinate of 3D feature in world coordinates.- Returns:
- true if successful, false otherwise.
-