Package | Description |
---|---|
gov.sandia.cognition.math.geometry |
Provides classes and interfaces for computational geometry.
|
Modifier and Type | Method and Description |
---|---|
protected void |
KDTree.findNearest(VectorType key,
int k,
KDTree.Neighborhood<VectorType,DataType,PairType> neighborhood,
Metric<? super VectorType> metric)
Finds the "num" nearest neighbors to the given "key" stored in the
KDTree.
|
protected void |
KDTree.findNearestWithinRadius(VectorType key,
double radius,
KDTree.Neighborhood<VectorType,DataType,PairType> neighborhood,
Metric<? super VectorType> metric)
Finds the neighbors within a given distance to the given "key" stored in
the KDTree.
|