RStarTree
The RStarTree
class implements the R*-tree, a multidimensional
space partitioning tree that can insert and remove points dynamically. The
R*-tree is an improvement over the RTree
: its growth procedure
is more complex and thus slightly more expensive, but results in trees where
internal nodes have less overlap, which means better performance for search and
lookup tasks.
mlpackβs RStarTree
implementation supports three template parameters for
configurable behavior, and implements all the functionality required by the
TreeType API, plus some
additional functionality specific to R trees.
The R*-tree is generally less efficient for machine learning tasks than other
trees such as the KDTree
or Octree
, but those
trees do not support dynamic insertion or deletion of points. If insert/delete
functionality is required, then the R-*-tree or other variants of
RectangleTree
should be chosen instead.
- Template parameters
- Constructors
- Basic tree properties
- Bounding distances with the tree
- Tree traversals
- Example usage
π See also
RectangleTree
RTree
- R*-Tree on Wikipedia
- The R*-tree: An Efficient And Robust Access Method for Points and Rectangles (pdf)
- Tree-Independent Dual-Tree Algorithms (pdf)
π Template parameters
In accordance with the TreeType
API
(see also this more detailed section),
the RStarTree
class takes three template parameters:
RStarTree<DistanceType, StatisticType, MatType>
-
DistanceType
: the distance metric to use for distance computations.RTree
requires that this isEuclideanDistance
, and a compilation error will be thrown if any otherDistanceType
is specified. StatisticType
: this holds auxiliary information in each tree node. By default,EmptyStatistic
is used, which holds no information.- See the
StatisticType
section for more details.
- See the
MatType
: the type of matrix used to represent points. Must be a type matching the Armadillo API. By default,arma::mat
is used, but other types such asarma::fmat
or similar will work just fine.
The RStarTree
class itself is a convenience typedef of the generic
RectangleTree
class, using the
RStarTreeSplit
class as the split strategy,
the RStarTreeDescentHeuristic
class
as the descent strategy, and
NoAuxiliaryInformation
as the
auxiliary information type.
If no template parameters are explicitly specified, then defaults are used:
RStarTree<> = RStarTree<EuclideanDistance, EmptyStatistic, arma::mat>
π Constructors
RStarTree
s are constructed by inserting points in a dataset sequentially.
The dataset is not permuted during the construction process.
node = RStarTree(data)
node = RStarTree(data, maxLeafSize=20, minLeafSize=8)
node = RStarTree(data, maxLeafSize=20, minLeafSize=8, maxNumChildren=5, minNumChildren=2)
- Construct an
RStarTree
on the givendata
with the given construction parameters. - By default,
data
is copied. Avoid a copy by usingstd::move()
(e.g.std::move(data)
); when doing this,data
will be set to an empty matrix.
- Construct an
node = RStarTree<DistanceType, StatisticType, MatType>(data)
node = RStarTree<DistanceType, StatisticType, MatType>(data, maxLeafSize=20, minLeafSize=8)
node = RStarTree<DistanceType, StatisticType, MatType>(data, maxLeafSize=20, minLeafSize=8, maxNumChildren=5, minNumChildren=2)
- Construct an
RStarTree
on the givendata
, using custom template parameters to control the behavior of the tree and the given construction parameters. - By default,
data
is copied. Avoid a copy by usingstd::move()
(e.g.std::move(data)
); when doing this,data
will be set to an empty matrix.
- Construct an
node = RStarTree(dimensionality)
- Construct an empty
RStarTree
with no children, no points, and default template parameters. - Use
node.Insert()
to insert points into the tree. All points must have dimensionalitydimensionality
.
- Construct an empty
node.Insert(x)
- Insert the point
x
into the tree. x
should have vector type compatible with the chosenMatType
; so, for defaultMatType
,arma::vec
is the expected type.- If a custom
MatType
is specified (e.g.arma::fmat
), thenx
should have type equivalent to the corresponding column vector type (e.g.arma::fvec
). - Due to tree rebalancing, this may change the internal structure of the
tree; so references and pointers to children of
node
may become invalid. - Warning: This will throw an exception if
node
is not the root of the tree!
- Insert the point
- `node.Delete(i)
- Delete the point with index
i
from the tree. - The point to be deleted from the tree will be
node.Dataset().col(i)
; after deleting, the column will be removed fromnode.Dataset()
and all indexes held in all tree nodes will be updated. (Thus, this operation can be expensive!) - Due to tree rebalancing, this may change the internal structure of the
tree; so references and pointers to children of
node
may become invalid. - Warning: This will throw an exception if
node
is not the root of the tree!
- Delete the point with index
Notes:
-
The name
node
is used here forRStarTree
objects instead oftree
, because eachRStarTree
object is a single node in the tree. The constructor returns the node that is the root of the tree. -
See also the developer documentation on tree constructors.
π Constructor parameters:
name | type | description | default |
---|---|---|---|
data |
MatType |
Column-major matrix to build the tree on. Pass with std::move(data) to avoid copying the matrix. |
(N/A) |
maxLeafSize |
size_t |
Maximum number of points to store in each leaf. | 20 |
minLeafSize |
size_t |
Minimum number of points to store in each leaf. | 8 |
maxNumChildren |
size_t |
Maximum number of children allowed in each non-leaf node. | 5 |
minNumChildren |
size_t |
Minimum number of children in each non-leaf node. | 2 |
dimensionality |
size_t |
Dimensionality of points to be held in the tree. | (N/A) |
Β | Β | Β | Β |
x |
arma::vec |
Column vector: point to insert into tree. Should have type matching the column vector type associated with MatType , and must have node.Dataset().n_rows elements. |
(N/A) |
i |
size_t |
Index of point in node.Dataset() to delete from node . |
(N/A) |
π Basic tree properties
Once an RStarTree
object is constructed, various properties of the tree can be
accessed or inspected. Many of these functions are required by the TreeType
API.
π Navigating the tree
-
node.NumChildren()
returns the number of children innode
. This is0
ifnode
is a leaf, and between the values ofnode.MinNumChildren()
andnode.MaxNumChildren()
(inclusive) otherwise. -
node.IsLeaf()
returns abool
indicating whether or notnode
is a leaf. node.Child(i)
returns anRStarTree&
that is thei
th child.i
must be less thannode.NumChildren()
.- This function should only be called if
node.NumChildren()
is not0
(e.g. ifnode
is not a leaf). Note that this returns a validRStarTree&
that can itself be used just like the root node of the tree!
node.Parent()
will return anRStarTree*
that points to the parent ofnode
, orNULL
ifnode
is the root of theRStarTree
.
π Accessing members of a tree
node.Bound()
will return anHRectBound<DistanceType, ElemType>&
object that represents the hyperrectangle bounding box ofnode
.ElemType
is the element type ofMatType
; so, if default template parameters are used,ElemType
isdouble
.bound
is a hyperrectangle that encloses all the descendant points ofnode
. It may be somewhat loose (e.g. points may not be very near the edges).
-
node.Stat()
will return aStatisticType&
holding the statistics of the node that were computed during tree construction. -
node.Distance()
will return aEuclideanDistance&
. SinceEuclideanDistance
has no members, this function is not likely to be useful, but it is required by the TreeType API. -
node.MinNumChildren()
returns the minimum number of children that the node is required to have as asize_t
. If points are deleted such that the number of children falls below this limit, thennode
will become a leaf and the tree will be rebalanced. -
node.MaxNumChildren()
returns the maximum number of children that the node is required to have as asize_t
. If points are inserted such that the number of children goes above this limit, new nodes will be added and the tree will be rebalanced. -
node.MaxLeafSize()
returns the maximum number of points that the node is allowed to hold as asize_t
. If the number of points held bynode
exceeds this limit during insertion, thennode
will be split and the tree will be rebalanced. node.MinLeafSize()
returns the minimum number of points that the node is allowed to hold as asize_t
. If the number of points held bynode
goes under this limit during deletion, thennode
will be deleted (if possible) and the tree will be rebalanced.
See also the developer documentation for basic tree functionality in mlpack.
π Accessing data held in a tree
-
node.Dataset()
will return aconst MatType&
that is an internally-held representation of the dataset the tree was built on. node.NumPoints()
returns asize_t
indicating the number of points held directly innode
.- If
node
is not a leaf, this will return0
, asRStarTree
only holds points directly in its leaves. - If
node
is a leaf, then this will return values betweennode.MinLeafSize()
andnode.MaxLeafSize()
(inclusive). - If the tree has fewer than
node.MinLeafSize()
points total, thennode.NumPoints()
will return a value less thannode.MinLeafSize()
.
- If
node.Point(i)
returns asize_t
indicating the index of thei
βth point innode.Dataset()
.i
must be in the range[0, node.NumPoints() - 1]
(inclusive).node
must be a leaf (as non-leaves do not hold any points).- The
i
βth point innode
can then be accessed asnode.Dataset().col(node.Point(i))
. - Accessing the actual
i
βth point itself can be done with, e.g.,node.Dataset().col(node.Point(i))
. - Point indices are not necessarily contiguous for
RStarTree
s; that is,node.Point(i) + 1
is not necessarilynode.Point(i + 1)
.
node.NumDescendants()
returns asize_t
indicating the number of points held in all descendant leaves ofnode
.- If
node
is the root of the tree, thennode.NumDescendants()
will be equal tonode.Dataset().n_cols
.
- If
node.Descendant(i)
returns asize_t
indicating the index of thei
βth descendant point innode.Dataset()
.i
must be in the range[0, node.NumDescendants() - 1]
(inclusive).node
does not need to be a leaf.- The
i
βth descendant point innode
can then be accessed asnode.Dataset().col(node.Descendant(i))
. - Accessing the actual
i
βth descendant itself can be done with, e.g.,node.Dataset().col(node.Descendant(i))
. - Descendant point indices are not necessarily contiguous for
RTree
s; that is,node.Descendant(i) + 1
is not necessarilynode.Descendant(i + 1)
.
π Accessing computed bound quantities of a tree
The following quantities are cached for each node in a RStarTree
, and so
accessing them does not require any computation. In the documentation below,
ElemType
is the element type of the given MatType
; e.g., if MatType
is
arma::mat
, then ElemType
is double
.
node.FurthestPointDistance()
returns anElemType
representing the distance between the center of the bound ofnode
and the furthest point held bynode
.- If
node
is not a leaf, this returns 0 (becausenode
does not hold any points).
- If
-
node.FurthestDescendantDistance()
returns anElemType
representing the distance between the center of the bound ofnode
and the furthest descendant point held bynode
. -
node.MinimumBoundDistance()
returns anElemType
representing the minimum possible distance from the center of the node to any edge of its bound. node.ParentDistance()
returns anElemType
representing the distance between the center of the bound ofnode
and the center of the bound of its parent.- If
node
is the root of the tree,0
is returned.
- If
Note: for more details on each bound quantity, see the developer documentation on bound quantities for trees.
π Other functionality
node.Center(center)
computes the center of the hyperrectangle bounding box ofnode
and stores it incenter
.center
should be of typearma::Col<ElemType>&
, whereElemType
is the element type of the specifiedMatType
.center
will be set to have size equivalent to the dimensionality of the dataset held bynode
.- This is equivalent to calling
node.Bound().Center(center)
.
- An
RStarTree
can be serialized withdata::Save()
anddata::Load()
.
π Bounding distances with the tree
The primary use of trees in mlpack is bounding distances to points or other tree nodes. The following functions can be used for these tasks.
node.GetNearestChild(point)
node.GetFurthestChild(point)
- Return a
size_t
indicating the index of the child that is closest to (or furthest from)point
, with respect to theMinDistance()
(orMaxDistance()
) function. - If there is a tie, the node with the lowest index is returned.
- If
node
is a leaf,0
is returned. point
should be a column vector type of the same type asMatType
. (e.g., ifMatType
isarma::mat
, thenpoint
should be anarma::vec
.)
- Return a
node.GetNearestChild(other)
node.GetFurthestChild(other)
- Return a
size_t
indicating the index of the child that is closest to (or furthest from) theRStarTree
nodeother
, with respect to theMinDistance()
(orMaxDistance()
) function. - If there is a tie, the node with the lowest index is returned.
- If
node
is a leaf,0
is returned.
- Return a
node.MinDistance(point)
node.MinDistance(other)
- Return a
double
indicating the minimum possible distance betweennode
andpoint
, or theRStarTree
nodeother
. - This is equivalent to the minimum possible distance between any point
contained in the bounding hyperrectangle of
node
andpoint
, or between any point contained in the bounding hyperrectangle ofnode
and any point contained in the bounding hyperrectangle ofother
. point
should be a column vector type of the same type asMatType
. (e.g., ifMatType
isarma::mat
, thenpoint
should be anarma::vec
.)
- Return a
node.MaxDistance(point)
node.MaxDistance(other)
- Return a
double
indicating the maximum possible distance betweennode
andpoint
, or theRStarTree
nodeother
. - This is equivalent to the maximum possible distance between any point
contained in the bounding hyperrectangle of
node
andpoint
, or between any point contained in the bounding hyperrectangle ofnode
and any point contained in the bounding hyperrectangle ofother
. point
should be a column vector type of the same type asMatType
. (e.g., ifMatType
isarma::mat
, thenpoint
should be anarma::vec
.)
- Return a
node.RangeDistance(point)
node.RangeDistance(other)
- Return a
RangeType<ElemType>
whose lower bound isnode.MinDistance(point)
ornode.MinDistance(other)
, and whose upper bound isnode.MaxDistance(point)
ornode.MaxDistance(other)
. ElemType
is the element type ofMatType
.point
should be a column vector type of the same type asMatType
. (e.g., ifMatType
isarma::mat
, thenpoint
should be anarma::vec
.)
- Return a
π Tree traversals
Like every mlpack tree, the RStarTree
class provides a single-tree and
dual-tree traversal that can be paired
with a RuleType
class to implement a
single-tree or dual-tree algorithm.
RStarTree::SingleTreeTraverser
- Implements a depth-first single-tree traverser.
RStarTree::DualTreeTraverser
- Implements a dual-depth-first dual-tree traverser.
π Example usage
Build an RStarTree
on the cloud
dataset and print basic statistics about the
tree.
// See https://datasets.mlpack.org/cloud.csv.
arma::mat dataset;
mlpack::data::Load("cloud.csv", dataset, true);
// Build the rectangle tree with a leaf size of 10. (This means that leaf nodes
// cannot contain more than 10 points.)
//
// The std::move() means that `dataset` will be empty after this call, and no
// data will be copied during tree building.
//
// Note that the '<>' isn't necessary if C++20 is being used (e.g.
// `mlpack::RStarTree tree(...)` will work fine in C++20 or newer).
mlpack::RStarTree<> tree(std::move(dataset));
// Print the bounding box of the root node.
std::cout << "Bounding box of root node:" << std::endl;
for (size_t i = 0; i < tree.Bound().Dim(); ++i)
{
std::cout << " - Dimension " << i << ": [" << tree.Bound()[i].Lo() << ", "
<< tree.Bound()[i].Hi() << "]." << std::endl;
}
std::cout << std::endl;
// Print the number of children in the root, and the allowable range.
std::cout << "Number of children of root: " << tree.NumChildren()
<< "; allowable range: [" << tree.MinNumChildren() << ", "
<< tree.MaxNumChildren() << "]." << std::endl;
// Print the number of descendant points of the root, and of each of its
// children.
std::cout << "Descendant points of root: "
<< tree.NumDescendants() << "." << std::endl;
for (size_t i = 0; i < tree.NumChildren(); ++i)
{
std::cout << "Descendant points of child " << i << ": "
<< tree.Child(i).NumDescendants() << "." << std::endl;
}
std::cout << std::endl;
// Compute the center of the RStarTree.
arma::vec center;
tree.Center(center);
std::cout << "Center of tree: " << center.t();
Build two RStarTree
s on subsets of the corel dataset and compute minimum and
maximum distances between different nodes in the tree.
// See https://datasets.mlpack.org/corel-histogram.csv.
arma::mat dataset;
mlpack::data::Load("corel-histogram.csv", dataset, true);
// Build trees on the first half and the second half of points.
mlpack::RStarTree<> tree1(dataset.cols(0, dataset.n_cols / 2));
mlpack::RStarTree<> tree2(dataset.cols(dataset.n_cols / 2 + 1,
dataset.n_cols - 1));
// Compute the maximum distance between the trees.
std::cout << "Maximum distance between tree root nodes: "
<< tree1.MaxDistance(tree2) << "." << std::endl;
// Get the leftmost grandchild of the first tree's root---if it exists.
if (!tree1.IsLeaf() && !tree1.Child(0).IsLeaf())
{
mlpack::RStarTree<>& node1 = tree1.Child(0).Child(0);
// Get the leftmost grandchild of the second tree's root---if it exists.
if (!tree2.IsLeaf() && !tree2.Child(0).IsLeaf())
{
mlpack::RStarTree<>& node2 = tree2.Child(0).Child(0);
// Print the minimum and maximum distance between the nodes.
mlpack::Range dists = node1.RangeDistance(node2);
std::cout << "Possible distances between two grandchild nodes: ["
<< dists.Lo() << ", " << dists.Hi() << "]." << std::endl;
// Print the minimum distance between the first node and the first
// descendant point of the second node.
const size_t descendantIndex = node2.Descendant(0);
const double descendantMinDist =
node1.MinDistance(node2.Dataset().col(descendantIndex));
std::cout << "Minimum distance between grandchild node and descendant "
<< "point: " << descendantMinDist << "." << std::endl;
// Which child of node2 is closer to node1?
const size_t closestIndex = node2.GetNearestChild(node1);
std::cout << "Child " << closestIndex << " is closest to node1."
<< std::endl;
// And which child of node1 is further from node2?
const size_t furthestIndex = node1.GetFurthestChild(node2);
std::cout << "Child " << furthestIndex << " is furthest from node2."
<< std::endl;
}
}
Build an RStarTree
on 32-bit floating point data and save it to disk.
// See https://datasets.mlpack.org/corel-histogram.csv.
arma::fmat dataset;
mlpack::data::Load("corel-histogram.csv", dataset);
// Build the RStarTree using 32-bit floating point data as the matrix type. We
// will still use the default EmptyStatistic and EuclideanDistance parameters.
// A leaf size of 100 is used here.
mlpack::RStarTree<mlpack::EuclideanDistance,
mlpack::EmptyStatistic,
arma::fmat> tree(std::move(dataset), 100);
// Save the tree to disk with the name 'tree'.
mlpack::data::Save("tree.bin", "tree", tree);
std::cout << "Saved tree with " << tree.Dataset().n_cols << " points to "
<< "'tree.bin'." << std::endl;
Load a 32-bit floating point RStarTree
from disk, then traverse it manually
and find the number of leaf nodes with less than 10 points.
// This assumes the tree has already been saved to 'tree.bin' (as in the example
// above).
// This convenient typedef saves us a long type name!
using TreeType = mlpack::RStarTree<mlpack::EuclideanDistance,
mlpack::EmptyStatistic,
arma::fmat>;
TreeType tree;
mlpack::data::Load("tree.bin", "tree", tree);
std::cout << "Tree loaded with " << tree.NumDescendants() << " points."
<< std::endl;
// Recurse in a depth-first manner. Count both the total number of leaves, and
// the number of leaves with less than 10 points.
size_t leafCount = 0;
size_t totalLeafCount = 0;
std::stack<TreeType*> stack;
stack.push(&tree);
while (!stack.empty())
{
TreeType* node = stack.top();
stack.pop();
if (node->NumPoints() < 10)
++leafCount;
++totalLeafCount;
for (size_t i = 0; i < node->NumChildren(); ++i)
stack.push(&node->Child(i));
}
// Note that it would be possible to use TreeType::SingleTreeTraverser to
// perform the recursion above, but that is more well-suited for more complex
// tasks that require pruning and other non-trivial behavior; so using a simple
// stack is the better option here.
// Print the results.
std::cout << leafCount << " out of " << totalLeafCount << " leaves have fewer "
<< "than 10 points." << std::endl;
Build an RStarTree
by iteratively inserting points from the corel dataset,
print some information, and then remove a few randomly chosen points.
// See https://datasets.mlpack.org/corel-histogram.csv.
arma::mat dataset;
mlpack::data::Load("corel-histogram.csv", dataset, true);
// Create an empty tree of the right dimensionality.
mlpack::RStarTree<> t(dataset.n_rows);
// Insert points one by one for the first half of the dataset.
for (size_t i = 0; i < dataset.n_cols / 2; ++i)
t.Insert(dataset.col(i));
std::cout << "After inserting half the points, the root node has "
<< t.NumDescendants() << " descendant points and "
<< t.NumChildren() << " child nodes." << std::endl;
// For the second half, insert the points backwards.
for (size_t i = dataset.n_cols - 1; i >= dataset.n_cols / 2; --i)
t.Insert(dataset.col(i));
std::cout << "After inserting all the points, the root node has "
<< t.NumDescendants() << " descendant points and "
<< t.NumChildren() << " child nodes." << std::endl;
// Remove three random points.
t.Delete(mlpack::math::RandInt(0, t.NumDescendants()));
std::cout << "After removing 1 point, the root node has " << t.NumDescendants()
<< " descendant points." << std::endl;
t.Delete(mlpack::math::RandInt(0, t.NumDescendants()));
std::cout << "After removing 2 points, the root node has " << t.NumDescendants()
<< " descendant points." << std::endl;
t.Delete(mlpack::math::RandInt(0, t.NumDescendants()));
std::cout << "After removing 3 points, the root node has " << t.NumDescendants()
<< " descendant points." << std::endl;