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 class
KDTree.SamplerNode<T>
A KDTreeNode that stores it's value as a Sampler.protected static class
KDTree.ValueNode<T>
A KDTreeNode that stores it's value as a reference.Fields in net.imglib2 declared as KDTreeNode Modifier and Type Field Description KDTreeNode<T>
KDTreeNode. left
Left child of this node.KDTreeNode<T>
KDTreeNode. right
Right child of this node.protected KDTreeNode<T>
KDTree. root
Methods 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.String
KDTree. 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. bestPoint
protected KDTreeNode<T>[]
KNearestNeighborSearchOnKDTree. bestPoints
Fields 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. resultPoints
Methods in net.imglib2.neighborsearch with parameters of type KDTreeNode Modifier and Type Method Description protected void
KNearestNeighborSearchOnKDTree. searchNode(KDTreeNode<T> current)
protected void
NearestNeighborSearchOnKDTree. searchNode(KDTreeNode<T> current)
protected void
RadiusNeighborSearchOnKDTree. searchNode(KDTreeNode<T> current, double squRadius)
-