Uses of Class
org.ddogleg.nn.alg.KdTree.Node
Packages that use KdTree.Node
-
Uses of KdTree.Node in org.ddogleg.nn.alg
Fields in org.ddogleg.nn.alg declared as KdTree.NodeModifier and TypeFieldDescription@Nullable KdTree.NodeKdTree.Node.leftBranch ≤ point[split]KdTreeResult.node@Nullable KdTree.NodeKdTree.Node.rightBranch ≥ point[split]@Nullable KdTree.NodeKdTree.rootFields in org.ddogleg.nn.alg with type parameters of type KdTree.NodeModifier and TypeFieldDescriptionprotected List<KdTree.Node>KdTreeMemory.openprotected List<KdTree.Node>KdTreeMemory.unusedNodesMethods in org.ddogleg.nn.alg that return KdTree.NodeModifier and TypeMethodDescriptionprotected KdTree.NodeKdTreeConstructor.computeBranch(List<P> points, @Nullable DogArray_I32 indexes) Given the data inside this particular node, select a point for the node and compute the node's childrenprotected KdTree.NodeKdTreeConstructor.computeChild(List<P> points, @Nullable DogArray_I32 indexes) Creates a child by checking to see if it is a leaf or branch.KdTreeSearch1.findNeighbor(P target) Searches for the nearest neighbor to the target.KdTreeMemory.requestNode()Returns a new node.KdTreeMemory.requestNode(P point, int index) Request a leaf node be returned.Methods in org.ddogleg.nn.alg with parameters of type KdTree.Node -
Uses of KdTree.Node in org.ddogleg.nn.alg.searches
Methods in org.ddogleg.nn.alg.searches that return KdTree.NodeModifier and TypeMethodDescriptionKdTreeSearch1Bbf.findNeighbor(P target) KdTreeSearch1Standard.findNeighbor(P target) Finds the node which is closest to 'target'Methods in org.ddogleg.nn.alg.searches with parameters of type KdTree.NodeModifier and TypeMethodDescriptionprotected voidKdTreeSearchBestBinFirst.addToQueue(double closestDistanceSq, KdTree.Node node, P target) Adds a node to the priority queue.protected voidKdTreeSearch1Bbf.checkBestDistance(KdTree.Node node, P target) Checks to see if the current node's point is the closet point found so farprotected abstract voidKdTreeSearchBestBinFirst.checkBestDistance(KdTree.Node node, P target) Checks to see if the current node's point is the closet point found so farprotected voidKdTreeSearchNBbf.checkBestDistance(KdTree.Node node, P target) Checks to see if the current node's point is the closet point found so farprotected voidKdTreeSearchBestBinFirst.searchNode(P target, KdTree.Node n) Traverse a node down to a leaf.