Package boofcv.abst.geo.h
Class HomographyDLT_to_Epipolar
java.lang.Object
boofcv.abst.geo.h.HomographyDLT_to_Epipolar
- All Implemented Interfaces:
Estimate1ofEpipolar
,GeoModelEstimator1<DMatrixRMaj,
AssociatedPair>
Wrapper around
HomographyDirectLinearTransform
for Estimate1ofEpipolar
.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Minimum number of points required to estimate the model.boolean
process
(List<AssociatedPair> points, DMatrixRMaj H) Estimates the model given a set of observations.
-
Constructor Details
-
HomographyDLT_to_Epipolar
-
-
Method Details
-
process
Description copied from interface:GeoModelEstimator1
Estimates the model given a set of observations.- Specified by:
process
in interfaceGeoModelEstimator1<DMatrixRMaj,
AssociatedPair> - Parameters:
points
- Input: Set of observations. Not modified.H
- 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,
AssociatedPair> - Returns:
- Minimum number of points.
-