Uses of Class
net.imglib2.img.sparse.Ntree.NtreeNode
Packages that use Ntree.NtreeNode
-
Uses of Ntree.NtreeNode in net.imglib2.img.sparse
Fields in net.imglib2.img.sparse declared as Ntree.NtreeNodeModifier and TypeFieldDescriptionprivate Ntree.NtreeNode<T>[]Ntree.NtreeNode.childrenprivate final Ntree.NtreeNode<T> Ntree.NtreeNode.parent(package private) Ntree.NtreeNode<T> Ntree.rootRoot of the treeMethods in net.imglib2.img.sparse that return Ntree.NtreeNodeModifier and TypeMethodDescriptionprivate Ntree.NtreeNode<T> Ntree.copyRecursively(Ntree.NtreeNode<T> node, Ntree.NtreeNode<T> newParent) helper method for the copy constructorNtree(Ntree)to create a deep copy of the tree.(package private) Ntree.NtreeNode<T> Ntree.createNode(long[] position) Create a node containing only position (if it does not exist already).(package private) Ntree.NtreeNode<T> Ntree.createNodeWithValue(long[] position, T value) Set the value at position and get the lowest-level node containing position.Ntree.NtreeNode<T>[]Ntree.NtreeNode.getChildren()(package private) Ntree.NtreeNode<T> Ntree.getNode(long[] position) Get the lowest-level node containing position.Ntree.getRootNode()Returns the root node of the ntree(package private) Ntree.NtreeNode<T> Ntree.mergeUpwards(Ntree.NtreeNode<T> node) If all the children of our parent have the same value remove them all.Methods in net.imglib2.img.sparse with parameters of type Ntree.NtreeNodeModifier and TypeMethodDescriptionprivate Ntree.NtreeNode<T> Ntree.copyRecursively(Ntree.NtreeNode<T> node, Ntree.NtreeNode<T> newParent) helper method for the copy constructorNtree(Ntree)to create a deep copy of the tree.(package private) Ntree.NtreeNode<T> Ntree.mergeUpwards(Ntree.NtreeNode<T> node) If all the children of our parent have the same value remove them all.voidNtree.NtreeNode.setChildren(Ntree.NtreeNode<T>[] children) Constructors in net.imglib2.img.sparse with parameters of type Ntree.NtreeNode