Uses of Class
cz.cuni.jagrlib.iface.KDTree.IntNode

Packages that use KDTree.IntNode
cz.cuni.jagrlib.iface Various interfaces for connecting of JaGrLib modules. 
cz.cuni.jagrlib.piece Public modules (building blocks of JaGrLib compositions). 
 

Uses of KDTree.IntNode in cz.cuni.jagrlib.iface
 

Fields in cz.cuni.jagrlib.iface declared as KDTree.IntNode
 KDTree.IntNode KDTree.IntNode.left
          Left subtree (lower coordinates).
 KDTree.IntNode KDTree.IntNode.median
          Dividing - median - hyperplane (dim-1).
 KDTree.IntNode KDTree.IntNode.right
          Right subtree (greater coordinates).
 

Methods in cz.cuni.jagrlib.iface that return KDTree.IntNode
 KDTree.IntNode KDTree.getIntRoot()
          Returns actual root node.
 

Methods in cz.cuni.jagrlib.iface with parameters of type KDTree.IntNode
 void KDTree.setRoot(KDTree.IntNode r)
          Tree is assigned from externally prepared data.
 void KDTree.utilizeTree(KDTree.IntNode r)
          Utilize (use) the given tree.
 

Uses of KDTree.IntNode in cz.cuni.jagrlib.piece
 

Fields in cz.cuni.jagrlib.piece declared as KDTree.IntNode
protected  KDTree.IntNode ImageKDTree.root
          K-D-tree root node.
 

Methods in cz.cuni.jagrlib.piece that return KDTree.IntNode
protected  KDTree.IntNode ImageKDTree.boxSpaceBalanced3D(KDTree.IntNode node, int[] col)
          Recursively build subordinate nodes..
 KDTree.IntNode ImageKDTree.getIntRoot()
          Returns actual root node.
 

Methods in cz.cuni.jagrlib.piece with parameters of type KDTree.IntNode
protected  KDTree.IntNode ImageKDTree.boxSpaceBalanced3D(KDTree.IntNode node, int[] col)
          Recursively build subordinate nodes..
 void ImageKDTree.setRoot(KDTree.IntNode r)
          Tree is assigned from externally prepared data.
protected  void ImageKDTree.utilize3D(KDTree.IntNode node, int[] col)
          Recursively utilize the given sub-tree.
 void ImageKDTree.utilizeTree(KDTree.IntNode r)
          Utilize (use) the given tree.