Package | Description |
---|---|
net.imglib2 | |
net.imglib2.algorithm.kdtree | |
net.imglib2.neighborsearch |
Modifier and Type | Class and 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.
|
Modifier and Type | Field and Description |
---|---|
KDTreeNode<T> |
KDTreeNode.left
Left child of this node.
|
KDTreeNode<T> |
KDTreeNode.right
Right child of this node.
|
protected KDTreeNode<T> |
KDTree.root |
Modifier and Type | Method and Description |
---|---|
abstract KDTreeNode<T> |
KDTreeNode.copy() |
KDTreeNode<T> |
KDTree.getRoot()
Get the root node.
|
Modifier and Type | Method and Description |
---|---|
String |
KDTree.toString(KDTreeNode<T> left,
String indent) |
Constructor and Description |
---|
KDTreeNode(KDTreeNode<T> node) |
KDTreeNode(RealLocalizable position,
int dimension,
KDTreeNode<T> left,
KDTreeNode<T> right) |
KDTreeNode(RealLocalizable position,
int dimension,
KDTreeNode<T> left,
KDTreeNode<T> right) |
Modifier and Type | Method and Description |
---|---|
Iterable<KDTreeNode<T>> |
SplitHyperPlaneKDTree.getAboveNodes() |
Iterable<KDTreeNode<T>> |
SplitHyperPlaneKDTree.getBelowNodes() |
Iterable<KDTreeNode<T>> |
ClipConvexPolytopeKDTree.getInsideNodes() |
Iterable<KDTreeNode<T>> |
ClipConvexPolytopeKDTree.getOutsideNodes() |
Iterator<KDTreeNode<T>> |
KDTreeNodeIterable.iterator() |
Constructor and Description |
---|
KDTreeNodeIterable(ArrayList<KDTreeNode<T>> singleNodes,
ArrayList<KDTreeNode<T>> subtrees) |
KDTreeNodeIterable(ArrayList<KDTreeNode<T>> singleNodes,
ArrayList<KDTreeNode<T>> subtrees) |
Modifier and Type | Field and Description |
---|---|
protected KDTreeNode<T> |
NearestNeighborSearchOnKDTree.bestPoint |
protected KDTreeNode<T>[] |
KNearestNeighborSearchOnKDTree.bestPoints |
Modifier and Type | Field and Description |
---|---|
protected ArrayList<ValuePair<KDTreeNode<T>,Double>> |
RadiusNeighborSearchOnKDTree.resultPoints |
Modifier and Type | Method and Description |
---|---|
protected void |
NearestNeighborSearchOnKDTree.searchNode(KDTreeNode<T> current) |
protected void |
KNearestNeighborSearchOnKDTree.searchNode(KDTreeNode<T> current) |
protected void |
RadiusNeighborSearchOnKDTree.searchNode(KDTreeNode<T> current,
double squRadius) |
Copyright © 2015–2022 ImgLib2. All rights reserved.