Package boofcv.abst.geo.pose
Class WrapPRnPDirectLinearTransform
java.lang.Object
boofcv.abst.geo.pose.WrapPRnPDirectLinearTransform
- All Implemented Interfaces:
Estimate1ofPrNP
,GeoModelEstimator1<DMatrixRMaj,
Point2D4D>
Wrapper around
PRnPDirectLinearTransform
for EstimateNofPrNP
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Minimum number of points required to estimate the model.boolean
process
(List<Point2D4D> inputs, DMatrixRMaj solution) Estimates the model given a set of observations.
-
Constructor Details
-
WrapPRnPDirectLinearTransform
-
-
Method Details
-
process
Description copied from interface:GeoModelEstimator1
Estimates the model given a set of observations.- Specified by:
process
in interfaceGeoModelEstimator1<DMatrixRMaj,
Point2D4D> - Parameters:
inputs
- Input: Set of observations. Not modified.solution
- Output: Storage for the estimated model. Modified.- Returns:
- true if successful
-
getMinimumPoints
public int getMinimumPoints()Description copied from interface:GeoModelEstimator1
Minimum number of points required to estimate the model.- Specified by:
getMinimumPoints
in interfaceGeoModelEstimator1<DMatrixRMaj,
Point2D4D> - Returns:
- Minimum number of points.
-