Uses of Interface
org.tinspin.index.PointDistanceFunction
-
-
Uses of PointDistanceFunction in org.tinspin.index
Fields in org.tinspin.index declared as PointDistanceFunction Modifier and Type Field Description static PointDistanceFunctionPointDistanceFunction. L1L1/Manhattan/taxi distance.static PointDistanceFunctionPointDistanceFunction. L2L2/Euclidean distance.Methods in org.tinspin.index with parameters of type PointDistanceFunction Modifier and Type Method Description static StringPointDistanceFunction. getName(PointDistanceFunction fn)QueryIteratorKNN<PointEntryDist<T>>PointIndexMM. queryKNN(double[] center, int k, PointDistanceFunction distFn)Finds the nearest neighbor.QueryIteratorKNN<PointEntryDist<T>>PointIndexMMWrapper. queryKNN(double[] center, int k, PointDistanceFunction distFn)Constructors in org.tinspin.index with parameters of type PointDistanceFunction Constructor Description EdgeDistance(PointDistanceFunction distFn) -
Uses of PointDistanceFunction in org.tinspin.index.array
Methods in org.tinspin.index.array with parameters of type PointDistanceFunction Modifier and Type Method Description QueryIteratorKNN<PointEntryDist<T>>PointArray. queryKNN(double[] center, int k, PointDistanceFunction distFn) -
Uses of PointDistanceFunction in org.tinspin.index.covertree
Methods in org.tinspin.index.covertree with parameters of type PointDistanceFunction Modifier and Type Method Description static <T> CoverTree<T>CoverTree. create(int nDims, double base, PointDistanceFunction dist)static <T> CoverTree<T>CoverTree. create(Point<T>[] data, double base, PointDistanceFunction distFn)voidCoverTreeQueryKnn. reset(double[] center, int k, PointDistanceFunction dist)Constructors in org.tinspin.index.covertree with parameters of type PointDistanceFunction Constructor Description CoverTreeQueryKnn(CoverTree<T> tree, double[] center, int k, PointDistanceFunction dist) -
Uses of PointDistanceFunction in org.tinspin.index.kdtree
Methods in org.tinspin.index.kdtree with parameters of type PointDistanceFunction Modifier and Type Method Description static <T> KDTree<T>KDTree. create(int dims, PointDistanceFunction dist)Deprecated.List<KDEntryDist<T>>KDTree. knnQuery(double[] center, int k, PointDistanceFunction distFn)QueryIteratorKNN<PointEntryDist<T>>KDTree. queryKNN(double[] center, int k, PointDistanceFunction distFn) -
Uses of PointDistanceFunction in org.tinspin.index.phtree
Methods in org.tinspin.index.phtree with parameters of type PointDistanceFunction Modifier and Type Method Description QueryIteratorKNN<PointEntryDist<T>>PHTreeMMP. queryKNN(double[] center, int k, PointDistanceFunction distFn) -
Uses of PointDistanceFunction in org.tinspin.index.qthypercube
Methods in org.tinspin.index.qthypercube with parameters of type PointDistanceFunction Modifier and Type Method Description List<QEntryDist<T>>QuadTreeKD. knnQuery(double[] center, int k, PointDistanceFunction distFn)Deprecated.QueryIteratorKNN<PointEntryDist<T>>QuadTreeKD. queryKNN(double[] center, int k, PointDistanceFunction dist) -
Uses of PointDistanceFunction in org.tinspin.index.qthypercube2
Methods in org.tinspin.index.qthypercube2 with parameters of type PointDistanceFunction Modifier and Type Method Description List<QEntryDist<T>>QuadTreeKD2. knnQuery(double[] center, int k, PointDistanceFunction distFn)Deprecated.QueryIteratorKNN<PointEntryDist<T>>QuadTreeKD2. queryKNN(double[] center, int k, PointDistanceFunction distFn) -
Uses of PointDistanceFunction in org.tinspin.index.qtplain
Methods in org.tinspin.index.qtplain with parameters of type PointDistanceFunction Modifier and Type Method Description List<QEntryDist<T>>QuadTreeKD0. knnQuery(double[] center, int k, PointDistanceFunction distFn)Deprecated.QueryIteratorKNN<PointEntryDist<T>>QuadTreeKD0. queryKNN(double[] center, int k, PointDistanceFunction dist)
-