Uses of Class
net.imglib2.KDTreeNode
-
Packages that use KDTreeNode Package Description net.imglib2 net.imglib2.neighborsearch -
-
Uses of KDTreeNode in net.imglib2
Subclasses of KDTreeNode in net.imglib2 Modifier and Type Class Description protected static classKDTree.SamplerNode<T>A KDTreeNode that stores its value as a Sampler.protected static classKDTree.ValueNode<T>A KDTreeNode that stores its value as a reference.Fields in net.imglib2 declared as KDTreeNode Modifier and Type Field Description private KDTreeNode<T>KDTree.KDTreeCursor. currentNodeKDTreeNode<T>KDTreeNode. leftLeft child of this node.KDTreeNode<T>KDTreeNode. rightRight child of this node.protected KDTreeNode<T>KDTree. rootFields in net.imglib2 with type parameters of type KDTreeNode Modifier and Type Field Description private java.util.ArrayDeque<KDTreeNode<T>>KDTree.KDTreeCursor. nodesMethods in net.imglib2 that return KDTreeNode Modifier and Type Method Description abstract KDTreeNode<T>KDTreeNode. copy()KDTreeNode<T>KDTree. getRoot()Get the root node.Methods in net.imglib2 with parameters of type KDTreeNode Modifier and Type Method Description java.lang.StringKDTree. toString(KDTreeNode<T> left, java.lang.String indent)Constructors in net.imglib2 with parameters of type KDTreeNode Constructor Description KDTreeNode(KDTreeNode<T> node)KDTreeNode(RealLocalizable position, int dimension, KDTreeNode<T> left, KDTreeNode<T> right) -
Uses of KDTreeNode in net.imglib2.neighborsearch
Fields in net.imglib2.neighborsearch declared as KDTreeNode Modifier and Type Field Description protected KDTreeNode<T>NearestNeighborSearchOnKDTree. bestPointprotected KDTreeNode<T>[]KNearestNeighborSearchOnKDTree. bestPointsFields in net.imglib2.neighborsearch with type parameters of type KDTreeNode Modifier and Type Field Description protected java.util.ArrayList<ValuePair<KDTreeNode<T>,java.lang.Double>>RadiusNeighborSearchOnKDTree. resultPointsMethods in net.imglib2.neighborsearch with parameters of type KDTreeNode Modifier and Type Method Description protected voidKNearestNeighborSearchOnKDTree. searchNode(KDTreeNode<T> current)protected voidNearestNeighborSearchOnKDTree. searchNode(KDTreeNode<T> current)protected voidRadiusNeighborSearchOnKDTree. searchNode(KDTreeNode<T> current, double squRadius)
-