Uses of Interface
org.tinspin.index.PointMap
-
-
Uses of PointMap in org.tinspin.index
Methods in org.tinspin.index that return PointMap Modifier and Type Method Description static <T> PointMap<T>PointMap.Factory. createAndLoadStrRTree(int dims, RTreeEntry<T>[] entries)Create an STR-loaded R*Tree.static <T> PointMap<T>PointMap.Factory. createArray(int dims, int size)Create an array backed PointMap.static <T> PointMap<T>PointMap.Factory. createCoverTree(int dims)Create a COverTree.static <T> PointMap<T>PointMap.Factory. createKdTree(int dims)Create a kD-Tree.static <T> PointMap<T>PointMap.Factory. createKdTree(IndexConfig cfg)Create a kD-Tree.static <T> PointMap<T>PointMap.Factory. createPhTree(int dims)Create a PH-Tree.static <T> PointMap<T>PointMap.Factory. createQuadtree(int dims)Create a plain Quadtree.static <T> PointMap<T>PointMap.Factory. createQuadtree(int dims, int maxNodeCapacity, double[] center, double radius)Create a plain Quadtree.static <T> PointMap<T>PointMap.Factory. createQuadtreeHC(int dims)Create a Quadtree with hypercube navigation.static <T> PointMap<T>PointMap.Factory. createQuadtreeHC(int dims, int maxNodeCapacity, double[] center, double radius)Create a plain Quadtree.static <T> PointMap<T>PointMap.Factory. createQuadtreeHC2(int dims)Create a Quadtree with hypercube navigation.static <T> PointMap<T>PointMap.Factory. createQuadtreeHC2(int dims, int maxNodeCapacity, double[] center, double radius)Create a plain Quadtree.static <T> PointMap<T>PointMap.Factory. createRStarTree(int dims)Create an R*Tree. -
Uses of PointMap in org.tinspin.index.array
Classes in org.tinspin.index.array that implement PointMap Modifier and Type Class Description classPointArray<T> -
Uses of PointMap in org.tinspin.index.covertree
Classes in org.tinspin.index.covertree that implement PointMap Modifier and Type Class Description classCoverTree<T>A 'faster' CoverTree implementation based on the paper: -
Uses of PointMap in org.tinspin.index.kdtree
Classes in org.tinspin.index.kdtree that implement PointMap Modifier and Type Class Description classKDTree<T>A simple KD-Tree implementation. -
Uses of PointMap in org.tinspin.index.phtree
Classes in org.tinspin.index.phtree that implement PointMap Modifier and Type Class Description classPHTreeP<T> -
Uses of PointMap in org.tinspin.index.qthypercube
Classes in org.tinspin.index.qthypercube that implement PointMap Modifier and Type Class Description classQuadTreeKD<T>This is a MX-quadtree implementation with configurable maximum depth, maximum nodes size, and (if desired) automatic guessing of root rectangle. -
Uses of PointMap in org.tinspin.index.qthypercube2
Classes in org.tinspin.index.qthypercube2 that implement PointMap Modifier and Type Class Description classQuadTreeKD2<T>This is a MX-quadtree implementation with configurable maximum depth, maximum nodes size, and (if desired) automatic guessing of root rectangle. -
Uses of PointMap in org.tinspin.index.qtplain
Classes in org.tinspin.index.qtplain that implement PointMap Modifier and Type Class Description classQuadTreeKD0<T>A simple MX-quadtree implementation with configurable maximum depth, maximum nodes size, and (if desired) automatic guessing of root rectangle. -
Uses of PointMap in org.tinspin.index.util
Classes in org.tinspin.index.util that implement PointMap Modifier and Type Class Description classPointMapWrapper<T>Methods in org.tinspin.index.util that return PointMap Modifier and Type Method Description static <T> PointMap<T>PointMapWrapper. create(BoxMap<T> ind)
-