Uses of Interface
org.tinspin.index.RectangleDistanceFunction
-
Packages that use RectangleDistanceFunction Package Description org.tinspin.index org.tinspin.index.array org.tinspin.index.qthypercube org.tinspin.index.qtplain org.tinspin.index.rtree -
-
Uses of RectangleDistanceFunction in org.tinspin.index
Classes in org.tinspin.index that implement RectangleDistanceFunction Modifier and Type Class Description static classRectangleDistanceFunction.FarthestNeighborSpecial wrapper class which takes the inverse or the given function.static classRectangleDistanceFunction.RectangleDistThis class calculates the distance to a rectangular shaped object.Fields in org.tinspin.index declared as RectangleDistanceFunction Modifier and Type Field Description static RectangleDistanceFunctionRectangleDistanceFunction. CENTERstatic RectangleDistanceFunctionRectangleDistanceFunction. EDGEMethods in org.tinspin.index with parameters of type RectangleDistanceFunction Modifier and Type Method Description QueryIteratorKNN<RectangleEntryDist<T>>RectangleIndexMM. queryKNN(double[] center, int k, RectangleDistanceFunction distFn)Finds the nearest neighbor.Constructors in org.tinspin.index with parameters of type RectangleDistanceFunction Constructor Description FarthestNeighbor(RectangleDistanceFunction dist) -
Uses of RectangleDistanceFunction in org.tinspin.index.array
Methods in org.tinspin.index.array with parameters of type RectangleDistanceFunction Modifier and Type Method Description QueryIteratorKNN<RectangleEntryDist<T>>RectArray. queryKNN(double[] center, int k, RectangleDistanceFunction distFn) -
Uses of RectangleDistanceFunction in org.tinspin.index.qthypercube
Methods in org.tinspin.index.qthypercube with parameters of type RectangleDistanceFunction Modifier and Type Method Description QueryIteratorKNN<RectangleEntryDist<T>>QuadTreeRKD. queryKNN(double[] center, int k, RectangleDistanceFunction distFn) -
Uses of RectangleDistanceFunction in org.tinspin.index.qtplain
Methods in org.tinspin.index.qtplain with parameters of type RectangleDistanceFunction Modifier and Type Method Description QueryIteratorKNN<RectangleEntryDist<T>>QuadTreeRKD0. queryKNN(double[] center, int k, RectangleDistanceFunction distFn) -
Uses of RectangleDistanceFunction in org.tinspin.index.rtree
Methods in org.tinspin.index.rtree with parameters of type RectangleDistanceFunction Modifier and Type Method Description RTreeQueryKnn2<T>RTree. queryKNN(double[] center, int k, RectangleDistanceFunction dist)Iterable<RectangleEntryDist<T>>RTree. queryRangedNearestNeighbor(double[] center, RectangleDistanceFunction dist, RectangleDistanceFunction closestDist, double[] minBound, double[] maxBound)Iterable<RectangleEntryDist<T>>RTree. queryRangedNearestNeighbor(double[] center, RectangleDistanceFunction dist, RectangleDistanceFunction closestDist, Filter filter)This method returns an Iterable which returns the nodes by a combined range and nearest number search.DistEntry<T>RTreeQuery1NN. reset(double[] center, RectangleDistanceFunction dist)voidRTreeQueryKnn. reset(double[] center, int k, RectangleDistanceFunction dist)Constructors in org.tinspin.index.rtree with parameters of type RectangleDistanceFunction Constructor Description RTreeQueryKnn(RTree<T> tree, double[] center, int k, RectangleDistanceFunction dist)
-