Package boofcv.alg.structure
Class SceneWorkingGraph.InlierInfo
java.lang.Object
boofcv.alg.structure.SceneWorkingGraph.InlierInfo
- Enclosing class:
- SceneWorkingGraph
public static class SceneWorkingGraph.InlierInfo extends Object
Information on the set of inlier observations used to compute the camera location
-
Field Summary
Fields Modifier and Type Field Description DogArray<DogArray_I32>
observations
indexes of observations for each view listed in 'views'.double
scoreGeometric
Score for this inlier set and how good the geometry is.FastArray<PairwiseImageGraph.View>
views
List of views from which these inliers were selected from the first view is always the view which contains this set of info -
Constructor Summary
Constructors Constructor Description InlierInfo()
-
Method Summary
Modifier and Type Method Description int
getInlierCount()
Returns total number of features are included in this inlier setboolean
isEmpty()
void
reset()
void
setTo(SceneWorkingGraph.InlierInfo src)
String
toString()
-
Field Details
-
views
List of views from which these inliers were selected from the first view is always the view which contains this set of info -
observations
indexes of observations for each view listed in 'views'. obs[view][idx] will refer to the same feature for all 'idx' -
scoreGeometric
public double scoreGeometricScore for this inlier set and how good the geometry is. Used to compare the merit of different sets.
-
-
Constructor Details
-
InlierInfo
public InlierInfo()
-
-
Method Details